[libnetdata/threads] Change log level on error (#7653)
Reduce error to info. Fixes #7644 where only uv threads were not renamed
Adrien Mahieux committed
Jan 2, 2020 at 10:03 UTC
7169e1f90ba5eb47b742f1528d6772883666b644
1 file changed
+1
-1
libnetdata/threads/threads.c
+1
-1
@@ -148,7 +148,7 @@ void uv_thread_set_name_np(uv_thread_t ut, const char* name) {
148
#endif
149
150
if (ret)
151
- error("cannot set libuv thread name to %s. Err: %d", threadname, ret);
151
+ info("cannot set libuv thread name to %s. Err: %d", threadname, ret);
152
}
153
154
static void *thread_start(void *ptr) {