cache module, exchange the log level of Session destroyed with id: xxx from INFO to WARNING.

This commit is contained in:
mayang 2020-12-21 17:43:35 +08:00
parent 4ad573258c
commit 4059e9c53e
1 changed files with 1 additions and 1 deletions

View File

@ -1014,7 +1014,7 @@ Status CacheServer::DestroySession(CacheRequest *rq) {
// Finally remove the session itself // Finally remove the session itself
auto n = active_sessions_.erase(drop_session_id); auto n = active_sessions_.erase(drop_session_id);
if (n > 0) { if (n > 0) {
MS_LOG(INFO) << "Session destroyed with id " << drop_session_id; MS_LOG(WARNING) << "Session destroyed with id " << drop_session_id;
return Status::OK(); return Status::OK();
} else { } else {
if (found) { if (found) {