Skip to content
Snippets Groups Projects
Commit 2139bde7 authored by Guillaume Pasero's avatar Guillaume Pasero
Browse files

BUG: #1561: LogSetupInfo only displayed once per logger

parent cc1d161c
No related branches found
No related tags found
1 merge request!58Resolve "General log information appear several time in composite applications"
......@@ -87,8 +87,9 @@ void Logger::LogSetupInformation()
oss.str("");
oss.clear();
// only switch the flag for the singleton, so that other instances can call
// LogSetupInformation() several times
// ensure LogSetupInformation is done once per logger, and also that it is
// skipped by the singleton when it has already been printed by an other instance
LogSetupInformationDone();
Instance()->LogSetupInformationDone();
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment