in src/main/java/com/ericsson/gerrit/plugins/eventslog/sql/SQLQueryMaker.java [87:96]
private LocalDateTime parseDate(String date) throws DateTimeParseException {
LocalDateTime parsedDate;
try {
parsedDate = LocalDateTime.parse(date, DATE_TIME_FORMAT);
} catch (DateTimeParseException e) {
LocalDate localDate = LocalDate.parse(date, DATE_ONLY_FORMAT);
parsedDate = localDate.atStartOfDay();
}
return parsedDate;
}