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

cleaning logging for replsets

This commit is contained in:
dwight 2011-05-15 11:10:51 -04:00
parent d5d8854eff
commit 6d08c2b0e7

View File

@ -78,8 +78,8 @@ namespace mongo {
string s = string(cmdObj.getStringField("replSetHeartbeat"));
if( cmdLine.ourSetName() != s ) {
errmsg = "repl set names do not match";
log() << "cmdline: " << cmdLine._replSet << endl;
log() << "s: " << s << endl;
log() << "replSet set names do not match, our cmdline: " << cmdLine._replSet << rsLog;
log() << "replSet s: " << s << rsLog;
result.append("mismatch", true);
return false;
}
@ -148,7 +148,7 @@ namespace mongo {
string name() const { return "ReplSetHealthPollTask"; }
void doWork() {
if ( !theReplSet ) {
log(2) << "theReplSet not initialized yet, skipping health poll this round" << rsLog;
log(2) << "replSet not initialized yet, skipping health poll this round" << rsLog;
return;
}
@ -190,7 +190,7 @@ namespace mongo {
}
if( ok ) {
if( mem.upSince == 0 ) {
log() << "replSet info " << h.toString() << " is up" << rsLog;
log() << "replSet info member " << h.toString() << " is up" << rsLog;
mem.upSince = mem.lastHeartbeat;
}
mem.health = 1.0;
@ -238,7 +238,7 @@ namespace mongo {
down(mem, e.what());
}
catch(...) {
down(mem, "something unusual went wrong");
down(mem, "replSet unexpected exception in ReplSetHealthPollTask");
}
m = mem;
@ -249,7 +249,7 @@ namespace mongo {
bool changed = mem.changed(old);
if( changed ) {
if( old.hbstate != mem.hbstate )
log() << "replSet member " << h.toString() << ' ' << mem.hbstate.toString() << rsLog;
log() << "replSet member " << h.toString() << " is now in state " << mem.hbstate.toString() << rsLog;
}
if( changed || now-last>4 ) {
last = now;