Skip to content

Commit

Permalink
#448 switch one sysout to syserr
Browse files Browse the repository at this point in the history
  • Loading branch information
ryaneberly committed Dec 29, 2017
1 parent 74a994a commit 11e7564
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/cflint/CFLint.java
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ public void scan(final File folderOrFile) {
} catch (final Exception e) {
printException(e);
if (logError) {
System.out.println("Logging Error: " + FILE_ERROR);
System.err.println("Logging Error: " + FILE_ERROR);
fireCFLintException(e, FILE_ERROR, folderOrFile.getAbsolutePath(), null, null, null, null);
}
}
Expand Down

0 comments on commit 11e7564

Please sign in to comment.