From d6b37286e1fa3fccfe17b84070a926702c5e5de5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micka=C3=ABl=20Turnel?= Date: Tue, 10 Apr 2018 11:03:17 +0200 Subject: [PATCH] Set invalid flag message from fatal to warning (retrofit of commit 40b085) --- coreapi/logging.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coreapi/logging.c b/coreapi/logging.c index 6f2a216d6..5af54e5d5 100644 --- a/coreapi/logging.c +++ b/coreapi/logging.c @@ -72,7 +72,7 @@ LinphoneLogLevel _bctbx_log_level_to_linphone_log_level(BctbxLogLevel level) { if (response != tmap.cend()) { return response->first; } else { - ms_fatal("%s(): invalid argurement [%d]", __FUNCTION__, level); + ms_warning("%s(): invalid argurement [%d]", __FUNCTION__, level); return LinphoneLogLevelDebug; } }