Skip to content

Commit

Permalink
Merge pull request #202 from babylonchain/slient-request-logs
Browse files Browse the repository at this point in the history
Slient request logs
  • Loading branch information
jrwbabylonlab authored Jul 8, 2024
2 parents c4b010b + 90ee823 commit fcd2332
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config/global-params.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"unbonding_fee": 20000,
"max_staking_amount": 1000000000,
"min_staking_amount": 1000000,
"max_staking_time": 65535,
"max_staking_time": 65000,
"min_staking_time": 64000,
"confirmation_depth": 10
}
Expand Down
2 changes: 1 addition & 1 deletion internal/api/middlewares/logging.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ func LoggingMiddleware(next http.Handler) http.Handler {
next.ServeHTTP(w, r)

requestDuration := time.Since(startTime).Milliseconds()
logEvent := logger.Info()
logEvent := logger.Debug()

tracingInfo := r.Context().Value(tracing.TracingInfoKey)
if tracingInfo != nil {
Expand Down

0 comments on commit fcd2332

Please sign in to comment.