mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-05-07 14:44:01 +00:00
fix(src/app/logger/Logger): use Error instead of Critical when an ORTP_ERROR occurs
This commit is contained in:
parent
9ac1c16178
commit
e63f9708f5
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue