UI: Logger: Rename 'I' type to '.'

This commit is contained in:
Nodir Temirkhodjaev 2024-02-24 13:38:17 +03:00
parent 70ea62b220
commit e2169e33f9

View File

@ -124,7 +124,7 @@ QString Logger::getDateString(const QString &format)
QString Logger::makeLogLine(LogLevel level, const QString &dateString, const QString &message)
{
static const char *const g_levelChars = "IWE";
static const char *const g_levelChars = ".WE";
return dateString + ' ' + g_levelChars[int(level)] + ' ' + message + '\n';
}