Skip to content

Commit 4c75e21

Browse files
committed
Eliminate stdout message when launching a posix thread.
This seems out of place as it's the only time RocksDB prints to stdout in the normal course of operations. Thread IDs can still be retrieved from the LOG file: cut -d ' ' -f2 LOG | sort | uniq | egrep -x '[0-9a-f]+'
1 parent 9f690ec commit 4c75e21

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

util/env_posix.cc

-3
Original file line numberDiff line numberDiff line change
@@ -1393,9 +1393,6 @@ class PosixEnv : public Env {
13931393
nullptr,
13941394
&ThreadPool::BGThreadWrapper,
13951395
this));
1396-
fprintf(stdout,
1397-
"Created bg thread 0x%lx\n",
1398-
(unsigned long)t);
13991396

14001397
// Set the thread name to aid debugging
14011398
#if defined(_GNU_SOURCE) && defined(__GLIBC_PREREQ)

0 commit comments

Comments
 (0)