logging level tweaks

This commit is contained in:
Michael Quigley 2023-06-16 13:28:41 -04:00
parent 23c275f930
commit 15ee4396f4
No known key found for this signature in database
GPG Key ID: 9B60314A9DD20A62

View File

@ -94,7 +94,7 @@ mainLoop:
case event, ok := <-s.msgs:
if !ok {
logrus.Warn("selecting on msg !ok")
logrus.Debug("selecting on msg !ok")
break msgLoop
}
if event.Body != nil {
@ -103,7 +103,7 @@ mainLoop:
msg: event,
}
} else {
logrus.Warn("event body was nil!")
logrus.Debug("event body was nil!")
break msgLoop
}
}