Skip to content

Commit

Permalink
chore: fix outdated comment
Browse files Browse the repository at this point in the history
  • Loading branch information
Piccirello committed Jul 11, 2023
1 parent ab970f0 commit 5892390
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/utils/log.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ func CanLogInfo() bool {
return Debug || !silent
}

// LogDebug prints a debug message to stdout
// LogDebug prints a debug message to stderr
func LogDebug(s string) {
if CanLogDebug() {
// log debug messages to stderr
Expand All @@ -69,7 +69,7 @@ func LogDebugError(e error) {
}
}

// CanLogDebug messages to stdout
// CanLogDebug messages to stderr
func CanLogDebug() bool {
return Debug
}
Expand Down

0 comments on commit 5892390

Please sign in to comment.