Skip to content

Commit

Permalink
Fix logging grammar (#53)
Browse files Browse the repository at this point in the history
  • Loading branch information
ofalvai committed Jun 1, 2021
1 parent a01bfdf commit 42ba67b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.go
Expand Up @@ -111,9 +111,9 @@ func main() {

result := compare(prevDescriptor, curDescriptor)

log.Warnf("%d files needs to be removed", len(result.removed))
log.Warnf("%d files need to be removed", len(result.removed))
logDebugPaths(result.removed)
log.Warnf("%d files has changed", len(result.changed))
log.Warnf("%d files have changed", len(result.changed))
logDebugPaths(result.changed)
log.Warnf("%d files added", len(result.added))
logDebugPaths(result.added)
Expand Down

0 comments on commit 42ba67b

Please sign in to comment.