From dab0006ebb53a7a0c3e34e5a971ed659036c07e7 Mon Sep 17 00:00:00 2001 From: Thraix Date: Sat, 5 Oct 2019 01:23:01 +0200 Subject: [PATCH] Remove unnecessary prints --- src/HFileGen.cpp | 1 - src/main.cpp | 1 - 2 files changed, 2 deletions(-) diff --git a/src/HFileGen.cpp b/src/HFileGen.cpp index 9e99353..da6be3d 100644 --- a/src/HFileGen.cpp +++ b/src/HFileGen.cpp @@ -24,7 +24,6 @@ void HFileGen::Create(const ConfigFile& conf) } } } - LOG_INFO(conf.configPath); std::ofstream os(conf.configPath + conf.srcdir+"/"+conf.hFile); os << "#pragma once" << std::endl << std::endl; diff --git a/src/main.cpp b/src/main.cpp index 3bc4808..26e1294 100755 --- a/src/main.cpp +++ b/src/main.cpp @@ -175,7 +175,6 @@ bool MakeGen(const std::string& filepath, unsigned int flags, const ConfigFile& FileUtils::CreateDirectory(conf.configPath + conf.outputdir); FileUtils::CreateDirectory(conf.configPath + conf.outputdir + "intermediates"); } - LOG_INFO(conf.configPath + conf.outputdir); return RunMake(filepath, flags, conf); }