log moved from warning to trace

This commit is contained in:
lucio 2020-03-10 18:59:57 +01:00
parent a421444deb
commit a7b8a18466
1 changed files with 4 additions and 4 deletions

View File

@ -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;