0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 01:21:03 +01:00

SERVER-5522 improve replHandshake log message

This commit is contained in:
matt dannenberg 2015-03-10 11:53:54 -04:00
parent 03bcff8aea
commit 300a825f5e

View File

@ -395,7 +395,7 @@ namespace repl {
BSONObj res;
bool ok = conn->runCommand( "admin" , cmd.obj() , res );
// ignoring for now on purpose for older versions
LOG( ok ? 1 : 0 ) << "replHandshake res not: " << ok << " res: " << res << endl;
LOG( ok ? 1 : 0 ) << "replHandshake result: " << res << endl;
return true;
}