Skip to content

Commit

Permalink
refactor: rename oracle api access fields
Browse files Browse the repository at this point in the history
  • Loading branch information
mrekucci committed Aug 9, 2024
1 parent aeb9ec0 commit 5986d55
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions oracle/pkg/apiserver/apiserver.go
Original file line number Diff line number Diff line change
Expand Up @@ -225,8 +225,8 @@ func (s *Service) Start(addr string) <-chan struct{} {
s.router.ServeHTTP(recorder, req)
s.logger.Info(
"api access",
slog.Int("status", recorder.status),
slog.String("method", req.Method),
slog.Int("http_status", recorder.status),
slog.String("http_method", req.Method),
slog.String("path", req.URL.Path),
slog.Duration("duration", time.Since(start)),
)
Expand Down

0 comments on commit 5986d55

Please sign in to comment.