Skip to content

Commit c25517a

Browse files
committed
Log failing record at a higher log level. (#210, #192)
1 parent 7021661 commit c25517a

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

metafix/src/main/java/org/metafacture/metafix/Metafix.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -371,7 +371,7 @@ protected void handleInternal(final FixExecutionException exception, final Recor
371371
};
372372

373373
public void handle(final FixExecutionException exception, final Record record) {
374-
LOG.debug("Current record: {}", record);
374+
LOG.info("Current record: {}", record);
375375
handleInternal(exception, record);
376376
}
377377

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# SLF4J's SimpleLogger configuration file
2+
#
3+
# See https://www.slf4j.org/api/org/slf4j/impl/SimpleLogger.html
4+
5+
org.slf4j.simpleLogger.defaultLogLevel=warn

0 commit comments

Comments
 (0)