Skip to content

Commit

Permalink
Disable logger
Browse files Browse the repository at this point in the history
  • Loading branch information
evgeniy-scherbina committed Aug 1, 2024
1 parent 572831e commit 5f8ce73
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion server/router.go
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,8 @@ func NewRouter(config *configuration.Configuration) (http.Handler, error) {

router := services.NewBlockchainRouter(config, client, asserter)

loggedRouter := sdkserver.LoggerMiddleware(router)
//loggedRouter := sdkserver.LoggerMiddleware(router)
loggedRouter := router
corsRouter := sdkserver.CorsMiddleware(loggedRouter)

return corsRouter, nil
Expand Down

0 comments on commit 5f8ce73

Please sign in to comment.