Skip to content

Commit

Permalink
chore: test fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
moshloop committed Aug 18, 2024
1 parent a08032b commit 2957de9
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions echo/debug.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,7 @@ func AddDebugHandlers(e *echo.Echo, rbac echo.MiddlewareFunc) {
debug := e.Group("/debug/", rbac)

debug.GET("/debug/loggers", func(c echo.Context) error {
c.JSON(200, logger.GetNamedLoggingLevels())
return nil
return c.JSON(200, logger.GetNamedLoggingLevels())
})

debug.POST("/debug/loggers", func(c echo.Context) error {
Expand Down

0 comments on commit 2957de9

Please sign in to comment.