Skip to content

Commit

Permalink
fix logging (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
shaspitz authored Mar 1, 2024
1 parent e6e5c91 commit 42c6f6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion standard/bridge-v1/cmd/relayer/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ func setupLogging(logLevel string) {
}
zerolog.SetGlobalLevel(lvl)
zerolog.TimeFieldFormat = zerolog.TimeFormatUnix
log.Logger = log.Output(zerolog.ConsoleWriter{Out: os.Stderr})
log.Logger = log.Output(os.Stdout).With().Caller().Logger()
}

type config struct {
Expand Down

0 comments on commit 42c6f6a

Please sign in to comment.