Skip to content

Commit

Permalink
fix: changed logging call in main.go
Browse files Browse the repository at this point in the history
  • Loading branch information
ebauman committed Nov 8, 2024
1 parent 7810259 commit ab0319c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ func main() {
for {
select {
case err := <-errCh:
logrus.Error(err)
log.Errorf(err.Error())
case <-ctx.Done():
return
}
Expand Down

0 comments on commit ab0319c

Please sign in to comment.