Skip to content

Commit

Permalink
Fix wrong values being logged
Browse files Browse the repository at this point in the history
  • Loading branch information
exuvo committed Apr 10, 2023
1 parent 5500a4a commit 8db8e24
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Kodgen/Source/CodeGen/Macro/MacroCodeGenUnitSettings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ void MacroCodeGenUnitSettings::loadClassFooterMacroPattern(toml::value const& ge

if (logger != nullptr)
{
logger->log("[TOML] Load class footer macro pattern: " + _generatedHeaderFileNamePattern);
logger->log("[TOML] Load class footer macro pattern: " + _classFooterMacroPattern);
}
}
}
Expand All @@ -81,7 +81,7 @@ void MacroCodeGenUnitSettings::loadHeaderFileFooterMacroPattern(toml::value cons

if (logger != nullptr)
{
logger->log("[TOML] Load header file footer macro pattern: " + _generatedHeaderFileNamePattern);
logger->log("[TOML] Load header file footer macro pattern: " + _headerFileFooterMacroPattern);
}
}
}
Expand Down Expand Up @@ -267,4 +267,4 @@ void MacroCodeGenUnitSettings::replaceTags(std::string& inout_string, std::strin

index = inout_string.find(tag, index + replacement.size());
}
}
}

0 comments on commit 8db8e24

Please sign in to comment.