Exchange the meaning of LOGP and LOGF

This commit is contained in:
Alexey Rybalchenko
2020-06-21 10:49:22 +02:00
parent 8446c6db0c
commit 56780689fc
3 changed files with 6 additions and 6 deletions

View File

@@ -190,8 +190,8 @@ int main()
cout << "cout: setting severity to 'trace'" << endl;
Logger::SetConsoleSeverity(Severity::trace);
LOGF(info, "Hello {} {}!", "world", ":-)");
LOGP(info, "Hello %s %s!", "world", ":-)");
LOGP(info, "Hello {} {}!", "world", ":-)");
LOGF(info, "Hello %s %s!", "world", ":-)");
cout << "cout: setting verbosity to 'high'" << endl;
Logger::SetVerbosity(Verbosity::high);