fix error message

This commit is contained in:
Joel Wetzell
2025-11-27 21:39:24 -05:00
parent 8bb60a3a3c
commit ed6f6d5759

View File

@@ -37,7 +37,7 @@ func main() {
} }
for _, routeError := range routeErrors { for _, routeError := range routeErrors {
slog.Error("problem initializing module", "index", routeError.Index, "error", routeError.Error) slog.Error("problem initializing route", "index", routeError.Index, "error", routeError.Error)
} }
router.Run() router.Run()
return nil return nil