- Small log change in DateTimeUtil.toLocalDate

This commit is contained in:
Andy Rozman 2019-06-29 19:49:35 +01:00
parent a77f10dc94
commit 9a1377fd78

View file

@ -49,7 +49,7 @@ public class DateTimeUtil {
return new LocalDateTime(year, month, dayOfMonth, hourOfDay, minute, second);
} catch (Exception ex) {
if (L.isEnabled(L.PUMPCOMM))
LOG.error("DateTimeUtil", String.format("Error creating LocalDateTime from values [atechDateTime=%d, year=%d, month=%d, day=%d, hour=%d, minute=%d, second=%d]", atechDateTime, year, month, dayOfMonth, hourOfDay, minute, second));
LOG.error("Error creating LocalDateTime from values [atechDateTime=%d, year=%d, month=%d, day=%d, hour=%d, minute=%d, second=%d]", atechDateTime, year, month, dayOfMonth, hourOfDay, minute, second);
//return null;
throw ex;
}