Implement LOGN for all sinks

This commit is contained in:
Alexey Rybalchenko
2019-08-19 15:58:51 +02:00
committed by Mohammad Al-Turany
parent dcc27744cd
commit d9ac93552e
3 changed files with 12 additions and 8 deletions

View File

@@ -354,9 +354,10 @@ Logger::~Logger() noexcept(false)
}
}
void Logger::PrintEmptyLine()
void Logger::LogEmptyLine()
{
cout << "\n" << flush;
// do nothing, line break is added by the destructor
// this call just to prevent any output to be added to the logger object
}
void Logger::SetConsoleSeverity(const Severity severity)