From e63f9708f5c8dd19c54d5dbc6804d385742221f4 Mon Sep 17 00:00:00 2001 From: Ronan Abhamon Date: Tue, 28 Mar 2017 11:14:38 +0200 Subject: [PATCH] fix(src/app/logger/Logger): use `Error` instead of `Critical` when an `ORTP_ERROR` occurs --- linphone-desktop/src/app/logger/Logger.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linphone-desktop/src/app/logger/Logger.cpp b/linphone-desktop/src/app/logger/Logger.cpp index 647141bd8..d86deb8ce 100644 --- a/linphone-desktop/src/app/logger/Logger.cpp +++ b/linphone-desktop/src/app/logger/Logger.cpp @@ -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