Skip to content

Commit

Permalink
fixup! Automatic adding separator to .cleo.log between entries added …
Browse files Browse the repository at this point in the history
…during different render frames.
  • Loading branch information
MiranDMC committed Sep 21, 2024
1 parent 64d0c41 commit 572941c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cleo_plugins/Text/CTextManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -106,11 +106,11 @@ namespace CLEO
{
std::ifstream stream(list.strings[i]);
auto result = ParseFxtFile(stream);
TRACE("Added %d new FXT entries from file '%s'", result, list.strings[i]);
TRACE(" Added %d new FXT entries from file '%s'", result, list.strings[i]);
}
catch (std::exception& ex)
{
LOG_WARNING(0, "Loading of FXT file '%s' failed: \n%s", list.strings[i], ex.what());
LOG_WARNING(0, " Loading of FXT file '%s' failed: \n%s", list.strings[i], ex.what());
}
}
CLEO::CLEO_StringListFree(list);
Expand Down

0 comments on commit 572941c

Please sign in to comment.