Commit 8657a0d6 authored by gary rong's avatar gary rong Committed by Péter Szilágyi

les: degrade the log level (#19939)

parent 36994e4e
...@@ -1129,7 +1129,7 @@ func (pm *ProtocolManager) handleMsg(p *peer) error { ...@@ -1129,7 +1129,7 @@ func (pm *ProtocolManager) handleMsg(p *peer) error {
} }
p.freezeServer(true) p.freezeServer(true)
pm.retriever.frozen(p) pm.retriever.frozen(p)
p.Log().Warn("Service stopped") p.Log().Debug("Service stopped")
case ResumeMsg: case ResumeMsg:
if pm.odr == nil { if pm.odr == nil {
...@@ -1141,7 +1141,7 @@ func (pm *ProtocolManager) handleMsg(p *peer) error { ...@@ -1141,7 +1141,7 @@ func (pm *ProtocolManager) handleMsg(p *peer) error {
} }
p.fcServer.ResumeFreeze(bv) p.fcServer.ResumeFreeze(bv)
p.freezeServer(false) p.freezeServer(false)
p.Log().Warn("Service resumed") p.Log().Debug("Service resumed")
default: default:
p.Log().Trace("Received unknown message", "code", msg.Code) p.Log().Trace("Received unknown message", "code", msg.Code)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment