Skip to content

Commit

Permalink
fixing Panicf
Browse files Browse the repository at this point in the history
  • Loading branch information
cskinfill committed Jan 29, 2024
1 parent f10a543 commit 474de40
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 @@ -97,7 +97,7 @@ func main() {
authMiddleware, err := NewAuthMiddleware(db)

if err != nil {
log.Panic("Badness %s", err)
log.Panicf("Badness %s", err)
}

router := mux.NewRouter()
Expand Down

0 comments on commit 474de40

Please sign in to comment.