Skip to content

Commit

Permalink
Merge pull request #18 from anchore/chore/add-debugf-func
Browse files Browse the repository at this point in the history
chore: add debugf func
  • Loading branch information
bradleyjones committed Jan 5, 2023
2 parents cbe1838 + db339c5 commit fc22f9d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions internal/logger/logger.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ func (log Logger) Debug(msg string, args ...interface{}) {
log.zap.Debugw(msg, args...)
}

func (log Logger) Debugf(msg string, args ...interface{}) {
log.zap.Debugf(msg, args...)
}

func (log Logger) Info(msg string, args ...interface{}) {
log.zap.Infow(msg, args...)
}
Expand Down

0 comments on commit fc22f9d

Please sign in to comment.