mctp-demux-daemon: Change default log level to MCTP_LOG_NOTICE

This allows us to log things that aren't warnings or errors but do need
some attention, more so than info-level issues.

Signed-off-by: Andrew Jeffery <andrew@aj.id.au>
Change-Id: I99779ebb4f15672e969337be8e52e247d803deb1
diff --git a/utils/mctp-demux-daemon.c b/utils/mctp-demux-daemon.c
index d07e141..8bb77ba 100644
--- a/utils/mctp-demux-daemon.c
+++ b/utils/mctp-demux-daemon.c
@@ -636,7 +636,7 @@
 	ctx->buf_size = 4096;
 	ctx->buf = malloc(ctx->buf_size);
 
-	mctp_set_log_stdio(ctx->verbose ? MCTP_LOG_DEBUG : MCTP_LOG_WARNING);
+	mctp_set_log_stdio(ctx->verbose ? MCTP_LOG_DEBUG : MCTP_LOG_NOTICE);
 
 	ctx->mctp = mctp_init();
 	assert(ctx->mctp);