Skip to content

Commit

Permalink
Leave comments as-is
Browse files Browse the repository at this point in the history
  • Loading branch information
tyrannosaurus-becks committed Dec 7, 2020
1 parent 77753a0 commit 9fdba84
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions logger.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ type ilogger interface {
type Debug interface {
Debug() bool

// Debugf print a formatted Debug line.
// Debugf print a formatted debug line.
Debugf(format string, v ...interface{})
// Debugln print a Debug line.
// Debugln print a debug line.
Debugln(v ...interface{})
}

Expand Down Expand Up @@ -53,8 +53,8 @@ func (t discard) Debug() bool {
return false
}

// Debugf print a formatted Debug line.
// Debugf print a formatted debug line.
func (t discard) Debugf(format string, v ...interface{}) {}

// Debugln print a Debug line.
// Debugln print a debug line.
func (t discard) Debugln(v ...interface{}) {}

0 comments on commit 9fdba84

Please sign in to comment.