Moved some less interesting debug messages from INFO to MEDIUM level for better readability

This commit is contained in:
Thulinma 2020-08-17 10:08:34 +02:00
parent 5e57dd57af
commit 5019c2418c
2 changed files with 10 additions and 3 deletions

View file

@ -1269,7 +1269,11 @@ namespace Mist{
}
if (!config->is_active){Util::logExitReason("set inactive");}
if (!myConn){Util::logExitReason("connection closed");}
INFO_MSG("Client handler shutting down, exit reason: %s", Util::exitReason);
if (strncmp(Util::exitReason, "connection closed", 17) == 0){
MEDIUM_MSG("Client handler shutting down, exit reason: %s", Util::exitReason);
}else{
INFO_MSG("Client handler shutting down, exit reason: %s", Util::exitReason);
}
onFinish();
/*LTS-START*/