Skip to content

Commit 7380b95

Browse files
authored
restore log format
1 parent b7c33b5 commit 7380b95

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

framework/codemodder-base/src/main/java/io/codemodder/LoggingConfigurator.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,7 @@ public ExecutionStatus configure(final LoggerContext lc) {
2424
ca.setContext(lc);
2525
ca.setName(APPENDER_NAME);
2626
PatternLayoutEncoder patternLayoutEncoder = new PatternLayoutEncoder();
27-
// add the timestamp
28-
// patternLayoutEncoder.setPattern("%m%n");
29-
patternLayoutEncoder.setPattern("%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n");
27+
patternLayoutEncoder.setPattern("%m%n");
3028
patternLayoutEncoder.setContext(lc);
3129
patternLayoutEncoder.setCharset(StandardCharsets.UTF_8);
3230
patternLayoutEncoder.start();

0 commit comments

Comments
 (0)