From 5496745b394f9b7b9eaf57fd619330d484ce2da8 Mon Sep 17 00:00:00 2001 From: Chris Patterson Date: Fri, 17 Nov 2023 15:46:44 -0500 Subject: [PATCH] azure: update diagnostic from warning level to debug This is normal behavior, don't warn. Signed-off-by: Chris Patterson --- cloudinit/sources/DataSourceAzure.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cloudinit/sources/DataSourceAzure.py b/cloudinit/sources/DataSourceAzure.py index 205d00551b5..6352f8e2733 100644 --- a/cloudinit/sources/DataSourceAzure.py +++ b/cloudinit/sources/DataSourceAzure.py @@ -1020,7 +1020,7 @@ def _wait_for_nic_detach(self, nl_sock): else: report_diagnostic_event( "The preprovisioned nic %s is detached" % ifname, - logger_func=LOG.warning, + logger_func=LOG.debug, ) except AssertionError as error: report_diagnostic_event(str(error), logger_func=LOG.error)