Skip to content

Commit

Permalink
core/plugins: fix logger field reference (#10815) (#10817)
Browse files Browse the repository at this point in the history
(cherry picked from commit c1348ed)

Co-authored-by: Jordan Krage <[email protected]>
  • Loading branch information
patrickhuie19 and jmank88 authored Sep 27, 2023
1 parent 6b0124e commit 2973566
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ func (s *Server) start() error {
if err != nil {
return fmt.Errorf("error getting environment configuration: %w", err)
}
s.PromServer = NewPromServer(envCfg.PrometheusPort(), s.lggr)
s.PromServer = NewPromServer(envCfg.PrometheusPort(), s.Logger)
err = s.PromServer.Start()
if err != nil {
return fmt.Errorf("error starting prometheus server: %w", err)
Expand Down

0 comments on commit 2973566

Please sign in to comment.