Browse Source
Merge pull request #1242 from trapexit/debug-removal
Remove unneeded debug logging from thread pool
pull/1244/head
trapexit
1 year ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
0 additions and
2 deletions
-
libfuse/lib/thread_pool.hpp
-
src/thread_pool.hpp
|
|
@ -218,7 +218,6 @@ public: |
|
|
|
diff = ((int)count_ - (int)_threads.size()); |
|
|
|
} |
|
|
|
|
|
|
|
syslog_debug("diff: %d",diff); |
|
|
|
for(auto i = diff; i > 0; --i) |
|
|
|
add_thread(); |
|
|
|
for(auto i = diff; i < 0; ++i) |
|
|
|
|
|
@ -218,7 +218,6 @@ public: |
|
|
|
diff = ((int)count_ - (int)_threads.size()); |
|
|
|
} |
|
|
|
|
|
|
|
syslog_debug("diff: %d",diff); |
|
|
|
for(auto i = diff; i > 0; --i) |
|
|
|
add_thread(); |
|
|
|
for(auto i = diff; i < 0; ++i) |
|
|
|