(cobra bots) change an error log to a warning log when reconnecting because no messages were received for a minute

This commit is contained in:
Benjamin Sergeant
2020-09-18 15:25:10 -07:00
parent d525c28907
commit 49995e32f0
3 changed files with 6 additions and 2 deletions

View File

@ -130,7 +130,7 @@ namespace ix
ss << "no messages received or sent for "
<< heartBeatTimeout << " seconds, reconnecting";
CoreLogger::error(ss.str());
CoreLogger::warn(ss.str());
stalledConnection = true;
}
state = currentState;