summaryrefslogtreecommitdiffstats
path: root/libnetdata
diff options
context:
space:
mode:
authorAdrien Mahieux <adrien.mahieux@gmail.com>2020-01-02 10:03:14 +0100
committerIlya Mashchenko <ilya@netdata.cloud>2020-01-02 12:03:14 +0300
commit7169e1f90ba5eb47b742f1528d6772883666b644 (patch)
tree9824679eb018867278e60bf4129a6b6157cb8af5 /libnetdata
parentecc05bbdb68603e0c46d9d413a23cd7a5c669364 (diff)
[libnetdata/threads] Change log level on error (#7653)
Reduce error to info. Fixes #7644 where only uv threads were not renamed
Diffstat (limited to 'libnetdata')
-rw-r--r--libnetdata/threads/threads.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libnetdata/threads/threads.c b/libnetdata/threads/threads.c
index c310d528bc..92e1678717 100644
--- a/libnetdata/threads/threads.c
+++ b/libnetdata/threads/threads.c
@@ -148,7 +148,7 @@ void uv_thread_set_name_np(uv_thread_t ut, const char* name) {
#endif
if (ret)
- error("cannot set libuv thread name to %s. Err: %d", threadname, ret);
+ info("cannot set libuv thread name to %s. Err: %d", threadname, ret);
}
static void *thread_start(void *ptr) {