Skip to content

Commit

Permalink
chore: remove unnecessary error logging
Browse files Browse the repository at this point in the history
  • Loading branch information
damonto committed Aug 3, 2024
1 parent d6a24c0 commit e94e150
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions internal/pkg/state/state.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package state

import (
"log/slog"
"sync"

"gopkg.in/telebot.v3"
Expand Down Expand Up @@ -39,7 +38,6 @@ func (c *StateManager) handleText() {
if step, ok := state.states[state.next]; ok {
return step(ctx)
}
slog.Error("stage not found", "stage", state.next)
}
return nil
})
Expand Down

0 comments on commit e94e150

Please sign in to comment.