diff options
-rw-r--r-- | src/server/threadpool.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/threadpool.c b/src/server/threadpool.c index cf39d5c..a21bd0d 100644 --- a/src/server/threadpool.c +++ b/src/server/threadpool.c @@ -89,7 +89,7 @@ bool threadpool_run(void *(*startRoutine)(void *), void *arg, const char *name) return false; } if ( 0 != thread_create( &(entry->thread), &threadAttrs, threadpool_worker, (void*)entry ) ) { - logadd( LOG_WARNING, "Could not create new thread for thread pool\n" ); + logadd( LOG_WARNING, "Could not create new thread for thread pool (%d active)\n", (int)activeThreads ); signal_close( entry->signal ); free( entry ); return false; |