Browse Source

!6305 Change log level from ERROR to DEBUG for debugger

Merge pull request !6305 from lichen_101010/change_log_level
tags/v1.0.0
mindspore-ci-bot Gitee 5 years ago
parent
commit
08a761b29d
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      mindspore/ccsrc/debug/debugger/debugger.cc

+ 1
- 1
mindspore/ccsrc/debug/debugger/debugger.cc View File

@@ -397,7 +397,7 @@ void Debugger::CommandLoop() {
// get type of the command in reply
DebuggerCommand cmd = GetCommand(reply);
if (cmd == DebuggerCommand::kUnknownCMD) {
MS_LOG(ERROR) << "Error: debugger recieved unknown command";
MS_LOG(DEBUG) << "Debug: debugger recieved unknown command";
continue;
}



Loading…
Cancel
Save