Skip to content

Commit 03b8dfe

Browse files
Updating func log types
1 parent ea95108 commit 03b8dfe

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

Src/runcpp2/CompilingLinking.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ namespace
2424

2525
if(!runcpp2::HasValueFromPlatformMap(overrideFlags))
2626
{
27-
ssLOG_INFO("No override flags found for current platform");
27+
ssLOG_DEBUG("No override flags found for current platform");
2828
return;
2929
}
3030

@@ -36,7 +36,7 @@ namespace
3636

3737
if(!profileFlagsOverride)
3838
{
39-
ssLOG_INFO("No override flags found for current profile");
39+
ssLOG_DEBUG("No override flags found for current profile");
4040
return;
4141
}
4242

@@ -77,7 +77,7 @@ namespace
7777
bool compileAsExecutable,
7878
std::vector<ghc::filesystem::path>& outObjectsFilesPaths)
7979
{
80-
ssLOG_FUNC_DEBUG();
80+
ssLOG_FUNC_INFO();
8181

8282
outObjectsFilesPaths.clear();
8383

@@ -319,7 +319,7 @@ namespace
319319
bool linkAsExecutable,
320320
const std::string& exeExt)
321321
{
322-
ssLOG_FUNC_DEBUG();
322+
ssLOG_FUNC_INFO();
323323
const runcpp2::Data::StageInfo::OutputTypeInfo* currentOutputTypeInfo = nullptr;
324324

325325
if(linkAsExecutable)

Src/runcpp2/ConfigParsing.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ namespace
1616
std::vector<runcpp2::Data::Profile>& outProfiles,
1717
std::string& outPreferredProfile)
1818
{
19-
ssLOG_FUNC_DEBUG();
19+
ssLOG_FUNC_INFO();
2020

2121
INTERNAL_RUNCPP2_SAFE_START();
2222

Src/runcpp2/DependenciesHelper.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ namespace
210210
const std::string& dependenciesCopiedDirectory,
211211
bool required)
212212
{
213-
ssLOG_FUNC_DEBUG();
213+
ssLOG_FUNC_INFO();
214214

215215
if(steps.empty())
216216
return true;
@@ -485,7 +485,7 @@ bool runcpp2::SetupDependenciesIfNeeded(const runcpp2::Data::Profile& profile,
485485
const std::vector<std::string>& dependenciesLocalCopiesPaths,
486486
const std::vector<std::string>& dependenciesSourcePaths)
487487
{
488-
ssLOG_FUNC_DEBUG();
488+
ssLOG_FUNC_INFO();
489489

490490
//If the script info is not populated (i.e. empty script info), don't do anything
491491
if(!scriptInfo.Populated)
@@ -537,7 +537,7 @@ bool runcpp2::BuildDependencies(const runcpp2::Data::Profile& profile,
537537
const std::vector<Data::DependencyInfo*>& availableDependencies,
538538
const std::vector<std::string>& dependenciesLocalCopiesPaths)
539539
{
540-
ssLOG_FUNC_DEBUG();
540+
ssLOG_FUNC_INFO();
541541

542542
//If the script info is not populated (i.e. empty script info), don't do anything
543543
if(!scriptInfo.Populated)

0 commit comments

Comments
 (0)