log moved from warning to trace
This commit is contained in:
parent
a421444deb
commit
a7b8a18466
|
@ -111,7 +111,7 @@ public class MappingUtils {
|
||||||
calendar = GregorianCalendar.from(zdt);
|
calendar = GregorianCalendar.from(zdt);
|
||||||
return calendar;
|
return calendar;
|
||||||
} catch (DateTimeParseException e) {
|
} catch (DateTimeParseException e) {
|
||||||
log.warn("date discarded not in ZoneDateTime format (" + date + ")");
|
log.trace("date discarded not in ZoneDateTime format (" + date + ")");
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
@ -121,7 +121,7 @@ public class MappingUtils {
|
||||||
calendar = GregorianCalendar.from(zdt);
|
calendar = GregorianCalendar.from(zdt);
|
||||||
return calendar;
|
return calendar;
|
||||||
} catch (DateTimeParseException e) {
|
} 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());
|
localDateTime.getHour(), localDateTime.getMinute(), localDateTime.getSecond());
|
||||||
return calendar;
|
return calendar;
|
||||||
} catch (DateTimeParseException e) {
|
} catch (DateTimeParseException e) {
|
||||||
log.warn("date discarded not in LocalDateTime format (" + date + ")");
|
log.trace("date discarded not in LocalDateTime format (" + date + ")");
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
@ -145,7 +145,7 @@ public class MappingUtils {
|
||||||
calendar.set(localDate.getYear(), localDate.getMonthValue()-1, localDate.getDayOfMonth());
|
calendar.set(localDate.getYear(), localDate.getMonthValue()-1, localDate.getDayOfMonth());
|
||||||
return calendar;
|
return calendar;
|
||||||
} catch (DateTimeParseException e) {
|
} catch (DateTimeParseException e) {
|
||||||
log.warn("date discarded not in LocalDate format (" + date + ")");
|
log.trace("date discarded not in LocalDate format (" + date + ")");
|
||||||
}
|
}
|
||||||
|
|
||||||
return calendar;
|
return calendar;
|
||||||
|
|
Loading…
Reference in New Issue