Merge pull request #1242 from trapexit/debug-removal

Remove unneeded debug logging from thread pool
This commit is contained in:
trapexit 2023-09-04 18:40:38 -05:00 committed by GitHub
commit b1dcc94e98
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 2 deletions

View File

@ -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)

View File

@ -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)