From 24fb40a812184fa57458ae9f0f4ffbced1dee09a Mon Sep 17 00:00:00 2001 From: Dmytro Bagrii Date: Thu, 13 May 2021 17:53:44 +0300 Subject: [PATCH] lib:util: Fix log level for normal startup message Message "daemon 'smbd' finished starting up and ready to serve connections" indicates normal startup but printed with 'error' log level and may be mistakenly treated as error during logs analisys. This patch changes log level to 'info'. Signed-off-by: Dmytro Bagrii Reviewed-by: Andreas Schneider Reviewed-by: Andrew Bartlett Autobuild-User(master): Andreas Schneider Autobuild-Date(master): Thu May 20 15:07:28 UTC 2021 on sn-devel-184 --- lib/util/become_daemon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/util/become_daemon.c b/lib/util/become_daemon.c index 984d4a82bcc..9424656d403 100644 --- a/lib/util/become_daemon.c +++ b/lib/util/become_daemon.c @@ -133,7 +133,7 @@ void daemon_ready(const char *daemon) daemon); } #endif - DBG_ERR("daemon '%s' finished starting up and ready to serve " + DBG_INFO("daemon '%s' finished starting up and ready to serve " "connections\n", daemon); } -- 2.47.3