Skip to content

Commit

Permalink
fix(fxhttpserver): Fixed handlers registration logs (#298)
Browse files Browse the repository at this point in the history
  • Loading branch information
ekkinox authored Nov 11, 2024
1 parent 3a019b0 commit e55d438
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fxhttpserver/module.go
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ func withRegisteredResources(httpServer *echo.Echo, p FxHttpServerParam) (*echo.
h.Middlewares()...,
)

httpServer.Logger.Debugf("registered handler for [%s] %s", h.Method(), h.Path())
httpServer.Logger.Debugf("registered handler for [%s] %s", method, h.Path())
}
}

Expand Down

0 comments on commit e55d438

Please sign in to comment.