fix(src/app/logger/Logger): use Error instead of Critical when an ORTP_ERROR occurs

This commit is contained in:
Ronan Abhamon 2017-03-28 11:14:38 +02:00
parent 9ac1c16178
commit e63f9708f5

View file

@ -73,7 +73,7 @@ static void linphoneLog (const char *domain, OrtpLogLevel type, const char *fmt,
else if (type == ORTP_WARNING)
format = RED "[%s][Warning]" YELLOW "Core:%s: " RESET "%s\n";
else if (type == ORTP_ERROR)
format = RED "[%s][Critical]" YELLOW "Core:%s: " RESET "%s\n";
format = RED "[%s][Error]" YELLOW "Core:%s: " RESET "%s\n";
else if (type == ORTP_FATAL)
format = RED "[%s][Fatal]" YELLOW "Core:%s: " RESET "%s\n";
else