diff --git a/tooling/agent/debugger_impl.cpp b/tooling/agent/debugger_impl.cpp index 05cc8fdc9e8b9dbc0aadac082bd06c68299ceb51..6c29716de29272d92d3c42d79db407d3f5083573 100755 --- a/tooling/agent/debugger_impl.cpp +++ b/tooling/agent/debugger_impl.cpp @@ -1317,7 +1317,7 @@ ScriptId DebuggerImpl::PreProcessBreakpoint(const BreakpointInfo &breakpoint, st return true; }; if (!MatchScripts(scriptFunc, url, ScriptMatchType::URL)) { - LOG_DEBUGGER(INFO) << "DebuggerImpl::PreProcessBreakpoint SUCCESS: URL-NO-MATCH Breakpoint"; + LOG_DEBUGGER(DEBUG) << "DebuggerImpl::PreProcessBreakpoint SUCCESS: URL-NO-MATCH Breakpoint"; JSPtLocation location{url, lineNumber, columnNumber}; list.emplace_back(location); return noMatchedId; @@ -1569,7 +1569,7 @@ void DebuggerImpl::CleanUpOnPaused() void DebuggerImpl::CleanUpRuntimeProperties() { - LOG_DEBUGGER(INFO) << "CleanUpRuntimeProperties OnPaused"; + LOG_DEBUGGER(DEBUG) << "CleanUpRuntimeProperties OnPaused"; if (runtime_->properties_.empty()) { return; } @@ -1927,7 +1927,7 @@ void DebuggerImpl::GetLocalVariables(const FrameHandler *frameHandler, panda_fil value = DebuggerApi::GetVRegValue(vm_, frameHandler, regIndex); if (varName == "this") { - LOG_DEBUGGER(INFO) << "find 'this' in local variable table"; + LOG_DEBUGGER(DEBUG) << "find 'this' in local variable table"; thisVal = value; continue; }