Skip to content

Commit

Permalink
downgrade BUG log to warning
Browse files Browse the repository at this point in the history
  • Loading branch information
vyzo committed Jan 18, 2022
1 parent 50378f0 commit 86adb8a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions p2p/host/resource-manager/scope.go
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ func (rc *resources) releaseMemory(size int64) {

// sanity check for bugs upstream
if rc.memory < 0 {
log.Error("BUG: too much memory released")
log.Warn("BUG: too much memory released")
rc.memory = 0
}
}
Expand Down Expand Up @@ -137,11 +137,11 @@ func (rc *resources) removeStreams(incount, outcount int) {
rc.nstreamsOut -= outcount

if rc.nstreamsIn < 0 {
log.Error("BUG: too many inbound streams released")
log.Warn("BUG: too many inbound streams released")
rc.nstreamsIn = 0
}
if rc.nstreamsOut < 0 {
log.Error("BUG: too many outbound streams released")
log.Warn("BUG: too many outbound streams released")
rc.nstreamsOut = 0
}
}
Expand Down Expand Up @@ -198,15 +198,15 @@ func (rc *resources) removeConns(incount, outcount, fdcount int) {
rc.nfd -= fdcount

if rc.nconnsIn < 0 {
log.Error("BUG: too many inbound connections released")
log.Warn("BUG: too many inbound connections released")
rc.nconnsIn = 0
}
if rc.nconnsOut < 0 {
log.Error("BUG: too many outbound connections released")
log.Warn("BUG: too many outbound connections released")
rc.nconnsOut = 0
}
if rc.nfd < 0 {
log.Error("BUG: too many file descriptors released")
log.Warn("BUG: too many file descriptors released")
rc.nfd = 0
}
}
Expand Down

0 comments on commit 86adb8a

Please sign in to comment.