From cabf3d834bb9d5187102cc315a48facf7b1f4983 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20M=C3=A4rdian?= Date: Tue, 16 Jul 2024 09:04:02 +0200 Subject: [PATCH] parse: downgrade warning about nm-device renderer to 'debug', as it's just informational --- src/parse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/parse.c b/src/parse.c index 9ea8e70fd..cb8f65777 100644 --- a/src/parse.c +++ b/src/parse.c @@ -3371,7 +3371,7 @@ handle_network_type(NetplanParser* npp, yaml_node_t* node, const char* key_prefi g_debug("netplan: %s: handling NetworkManager passthrough device, settings are not fully supported.", npp->current.netdef->id); handlers = ethernet_def_handlers; if (npp->current.netdef->backend != NETPLAN_BACKEND_NM) { - g_warning("nm-device: %s: the renderer for nm-devices must be NetworkManager, it will be used instead of the defined one.", + g_debug("nm-device: %s: the renderer for nm-devices must be NetworkManager, it will be used instead of the defined one.", npp->current.netdef->id); npp->current.netdef->backend = NETPLAN_BACKEND_NM; }