Skip to content

Commit

Permalink
Fix debug format when revgrep detects unchanged line
Browse files Browse the repository at this point in the history
  • Loading branch information
bradleyfalzon committed Jan 29, 2017
1 parent 00c70c6 commit 43b7dd6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion revgrep.go
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ func (c Checker) Check(reader io.Reader, writer io.Writer) (issues []Issue, err
}
}
if !changed {
c.debugf("unchanged:", scanner.Text())
c.debugf("unchanged: %s", scanner.Text())
}
}
if err := scanner.Err(); err != nil {
Expand Down

0 comments on commit 43b7dd6

Please sign in to comment.