From a14990818465b7922b28717360e00655e6282ff1 Mon Sep 17 00:00:00 2001 From: Adam Sutton Date: Fri, 6 Sep 2013 00:15:02 +0100 Subject: [PATCH] debug: hide thread start messages we get a lot of spam due to HTTP server setup so this needs to be debug --- src/wrappers.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wrappers.c b/src/wrappers.c index c3114c07..aeb892b7 100644 --- a/src/wrappers.c +++ b/src/wrappers.c @@ -88,7 +88,7 @@ int tvhthread_create0(pthread_t *thread, const pthread_attr_t *attr, char buf[16] = { 0 }; strncpy(buf, name, sizeof(buf)-1); r = pthread_create(thread, attr, start_routine, arg); - tvhinfo("thread", "created thread %ld [%s / %p]", *thread, name, start_routine); + tvhdebug("thread", "created thread %ld [%s / %p]", *thread, name, start_routine); if (r) return r; pthread_setname_np(*thread, buf); return r;