Skip to content

Commit

Permalink
Replace unicode characters in strings with unicode escape seque… (#2261)
Browse files Browse the repository at this point in the history
  • Loading branch information
rnorth committed Jan 19, 2020
1 parent fb869c0 commit a1dac13
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -221,9 +221,9 @@ private void checkDiskSpace(DockerClient dockerClient, String id) {

private void check(String message, boolean isSuccessful) {
if (isSuccessful) {
log.info("✔︎ {}", message);
log.info("\u2714 {}", message);
} else {
log.error(" {}", message);
log.error("\u274c {}", message);
throw new IllegalStateException("Check failed: " + message);
}
}
Expand Down

0 comments on commit a1dac13

Please sign in to comment.