logging cleanup

This commit is contained in:
Joel Wetzell
2025-12-26 10:08:24 -06:00
parent f1dff33704
commit e96913230b
17 changed files with 36 additions and 37 deletions

View File

@@ -95,7 +95,7 @@ func (us *UDPServer) Run() error {
select {
case <-us.ctx.Done():
// TODO(jwetzell): cleanup?
us.logger.Debug("router context done in module")
us.logger.Debug("done")
return nil
default:
listener.SetDeadline(time.Now().Add(time.Millisecond * 200))
@@ -112,7 +112,7 @@ func (us *UDPServer) Run() error {
if us.router != nil {
us.router.HandleInput(us.Id(), message)
} else {
us.logger.Error("net.udp.server has no router")
us.logger.Error("input received but no router is configured")
}
}
}