Revert "Moved note into either warning or info #4745"

This reverts commit d3a4ce1f11.
This commit is contained in:
Jerry (Xinyu Hou)
2015-07-09 13:28:47 -07:00
parent d8582d1093
commit 69a6038cf9
10 changed files with 25 additions and 25 deletions

View File

@@ -210,7 +210,7 @@ ClientProxy1_0::parseMessage(const UInt8* code)
void
ClientProxy1_0::handleDisconnect(const Event&, void*)
{
LOG((CLOG_INFO "client \"%s\" has disconnected", getName().c_str()));
LOG((CLOG_NOTE "client \"%s\" has disconnected", getName().c_str()));
disconnect();
}
@@ -225,7 +225,7 @@ void
ClientProxy1_0::handleFlatline(const Event&, void*)
{
// didn't get a heartbeat fast enough. assume client is dead.
LOG((CLOG_INFO "client \"%s\" is dead", getName().c_str()));
LOG((CLOG_NOTE "client \"%s\" is dead", getName().c_str()));
disconnect();
}