debug: use LOGL_NOTICE for log category DDEV

The log category DDEV ueses LOGL_INFO as debug level. This is too
verbose, lets use LOGL_NOTICE instead

Change-Id: I56d45ce5c3f55574491ffa6e4d902d6ba7499d46
Related: OS#2577
diff --git a/CommonLibs/debug.c b/CommonLibs/debug.c
index 5e09079..b33476e 100644
--- a/CommonLibs/debug.c
+++ b/CommonLibs/debug.c
@@ -73,7 +73,7 @@
 		.name = "DDEV",
 		.description = "Device/Driver specific code",
 		.color = NULL,
-		.enabled = 1, .loglevel = LOGL_INFO,
+		.enabled = 1, .loglevel = LOGL_NOTICE,
 	},
 	[DDEVDRV] = {
 		.name = "DDEVDRV",