use notice log level for "machine ID found" (#19825)
Ilya Mashchenko committed
Mar 11, 2025 at 17:22 UTC
fcffb2d12ce87d0a578342fded686b5219ecd0e8
1 file changed
+1
-1
src/libnetdata/os/machine_id.c
+1
-1
@@ -177,7 +177,7 @@ ND_UUID os_machine_id(void) {
177
else {
178
char buf[UUID_STR_LEN];
179
uuid_unparse_lower(cached_machine_id.uuid, buf);
180
- nd_log(NDLS_DAEMON, NDLP_WARNING, "OS_MACHINE_ID: machine ID found '%s'", buf);
180
+ nd_log(NDLS_DAEMON, NDLP_NOTICE, "OS_MACHINE_ID: machine ID found '%s'", buf);
181
}
182
}
183