diff options
Diffstat (limited to 'src/common/log_manager.cpp')
| -rw-r--r-- | src/common/log_manager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/log_manager.cpp b/src/common/log_manager.cpp index 4e1cb60bd..9fd019fb3 100644 --- a/src/common/log_manager.cpp +++ b/src/common/log_manager.cpp | |||
| @@ -121,7 +121,7 @@ void LogManager::Log(LogTypes::LOG_LEVELS level, LogTypes::LOG_TYPE type, const | |||
| 121 | if (!log->IsEnabled() || level > log->GetLevel() || ! log->HasListeners()) | 121 | if (!log->IsEnabled() || level > log->GetLevel() || ! log->HasListeners()) |
| 122 | return; | 122 | return; |
| 123 | 123 | ||
| 124 | CharArrayFromFormatV(temp, MAX_MSGLEN, fmt, args); | 124 | Common::CharArrayFromFormatV(temp, MAX_MSGLEN, fmt, args); |
| 125 | 125 | ||
| 126 | static const char level_to_char[7] = "ONEWID"; | 126 | static const char level_to_char[7] = "ONEWID"; |
| 127 | sprintf(msg, "%s %s:%u %c[%s] %s: %s\n", Common::Timer::GetTimeFormatted().c_str(), file, line, | 127 | sprintf(msg, "%s %s:%u %c[%s] %s: %s\n", Common::Timer::GetTimeFormatted().c_str(), file, line, |