This commit is contained in:
Dane Walton 2022-03-04 13:35:27 -07:00 коммит произвёл GitHub
Родитель a0915d48fc
Коммит 4977a70940
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -157,6 +157,9 @@ void consolelogger_log_with_GetLastError(const char* file, const char* func, int
timeString = get_ctime(&t);
#endif // LOGGER_DISABLE_PAL
// In case time is not implemented
timeString = timeString == NULL ? "<NO TIME IMPL>" : timeString;
systemMessage = printf_alloc("Error: Time:%.24s File:%s Func:%s Line:%d %s", timeString, file, func, line, lastErrorAsString);
if (systemMessage == NULL)
@ -221,6 +224,9 @@ void consolelogger_log(LOG_CATEGORY log_category, const char* file, const char*
timeString = get_ctime(&t);
#endif // LOGGER_DISABLE_PAL
// In case time is not implemented
timeString = timeString == NULL ? "<NO TIME IMPL>" : timeString;
switch (log_category)
{
case AZ_LOG_INFO: