Commit e63f9708 authored by Ronan Abhamon's avatar Ronan Abhamon

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

parent 9ac1c161
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment