test,mmsmspdu: add support for MSG log level

This commit is contained in:
Aleksander Morgado
2023-09-27 11:21:26 +00:00
parent 7990499602
commit 9f4c738d1f

View File

@@ -182,7 +182,7 @@ _mm_log (gpointer obj,
const gchar *module,
const gchar *loc,
const gchar *func,
guint32 level,
MMLogLevel level,
const gchar *fmt,
...)
{
@@ -200,6 +200,9 @@ _mm_log (gpointer obj,
case MM_LOG_LEVEL_WARN:
level_str = "warning";
break;
case MM_LOG_LEVEL_MSG:
level_str = "message";
break;
case MM_LOG_LEVEL_INFO:
level_str = "info";
break;