log moved from warning to trace

master
lucio 4 years ago
parent a421444deb
commit a7b8a18466

@ -111,7 +111,7 @@ public class MappingUtils {
calendar = GregorianCalendar.from(zdt);
return calendar;
} catch (DateTimeParseException e) {
log.warn("date discarded not in ZoneDateTime format (" + date + ")");
log.trace("date discarded not in ZoneDateTime format (" + date + ")");
}
try {
@ -121,7 +121,7 @@ public class MappingUtils {
calendar = GregorianCalendar.from(zdt);
return calendar;
} catch (DateTimeParseException e) {
log.warn("date discarded not in ZoneDateTime UTC format (" + date + ")");
log.trace("date discarded not in ZoneDateTime UTC format (" + date + ")");
}
@ -134,7 +134,7 @@ public class MappingUtils {
localDateTime.getHour(), localDateTime.getMinute(), localDateTime.getSecond());
return calendar;
} catch (DateTimeParseException e) {
log.warn("date discarded not in LocalDateTime format (" + date + ")");
log.trace("date discarded not in LocalDateTime format (" + date + ")");
}
try {
@ -145,7 +145,7 @@ public class MappingUtils {
calendar.set(localDate.getYear(), localDate.getMonthValue()-1, localDate.getDayOfMonth());
return calendar;
} catch (DateTimeParseException e) {
log.warn("date discarded not in LocalDate format (" + date + ")");
log.trace("date discarded not in LocalDate format (" + date + ")");
}
return calendar;

Loading…
Cancel
Save