Skip to content

Commit

Permalink
chore: cleanup debug code
Browse files Browse the repository at this point in the history
  • Loading branch information
ivan-penchev committed Jul 2, 2024
1 parent c30938e commit fea8459
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pulsar/log/wrapper_slog.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,12 @@ func (s *slogWrapper) Info(args ...interface{}) {

func (s *slogWrapper) Error(args ...interface{}) {
message := s.tryDetermineMessage(args)
s.logger.Error(message, args...)
s.logger.Error(message)
}

func (s *slogWrapper) Warn(args ...interface{}) {
message := s.tryDetermineMessage(args)
s.logger.Warn(message, args...)
s.logger.Warn(message)
}

func (s *slogWrapper) Debugf(format string, args ...interface{}) {
Expand Down

0 comments on commit fea8459

Please sign in to comment.