Comment out write to stdout

This commit is contained in:
Vinnie Falco
2013-11-22 14:11:27 -08:00
parent 306811d2a7
commit fad52c5917

View File

@@ -1393,9 +1393,15 @@ class PosixEnv : public Env {
nullptr,
&ThreadPool::BGThreadWrapper,
this));
// VFALCO Commented this out because it makes no sense
// for an embedded database to write to stdout
// in a normal case.
//
/*
fprintf(stdout,
"Created bg thread 0x%lx\n",
(unsigned long)t);
*/
bgthreads_.push_back(t);
}