Skip to content

Commit 9af9f29

Browse files
committed
Remove System.out.println
1 parent 2f965c8 commit 9af9f29

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

webapp/src/main/java/com/box/l10n/mojito/service/commit/CommitService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ public Commit getOrCreateCommit(
148148
commit.setAuthorName(authorName);
149149
commit.setSourceCreationDate(sourceCreationDate);
150150

151-
System.out.printf("setSourceCreationDate: %s%n", commit.getSourceCreationDate());
151+
logger.debug("setSourceCreationDate: {}", commit.getSourceCreationDate());
152152

153153
commit = commitRepository.save(commit);
154154
}

0 commit comments

Comments
 (0)