summaryrefslogtreecommitdiff
path: root/src/mongo/s/version_mongos.cpp
diff options
context:
space:
mode:
authorAndrew Morrow <acm@mongodb.com>2015-03-26 10:13:36 -0400
committerAndrew Morrow <acm@mongodb.com>2015-03-27 11:37:29 -0400
commit67cf6c0d51bf59a1933325c793b02c220283f331 (patch)
tree5ff86583c096e26b702c6754c4e41330061cc139 /src/mongo/s/version_mongos.cpp
parent1fc9d37170bcf29068f02cc2898436281fe16d6a (diff)
downloadmongo-67cf6c0d51bf59a1933325c793b02c220283f331.tar.gz
SERVER-11020 Don't overload the meaning of _DEBUG, use our own debug macro
Diffstat (limited to 'src/mongo/s/version_mongos.cpp')
-rw-r--r--src/mongo/s/version_mongos.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/s/version_mongos.cpp b/src/mongo/s/version_mongos.cpp
index e724bf23d07..1515a5aef86 100644
--- a/src/mongo/s/version_mongos.cpp
+++ b/src/mongo/s/version_mongos.cpp
@@ -49,7 +49,7 @@ namespace mongo {
ProcessId::getCurrent() << " port=" << serverGlobalParams.port <<
( sizeof(int*) == 4 ? " 32" : " 64" ) << "-bit host=" << getHostNameCached() <<
" (--help for usage)" << std::endl;
- DEV std::cout << "_DEBUG build" << std::endl;
+ DEV std::cout << "DEBUG build" << std::endl;
std::cout << "git version: " << gitVersion() << std::endl;
std::cout << openSSLVersion("OpenSSL version: ") << std::endl;
std::cout << "build sys info: " << sysInfo() << std::endl;
@@ -59,7 +59,7 @@ namespace mongo {
ProcessId::getCurrent() << " port=" << serverGlobalParams.port <<
( sizeof( int* ) == 4 ? " 32" : " 64" ) << "-bit host=" << getHostNameCached() <<
" (--help for usage)" << std::endl;
- DEV log() << "_DEBUG build" << std::endl;
+ DEV log() << "DEBUG build" << std::endl;
logProcessDetails();
}
}