in src/main/java/com/ericsson/gerrit/plugins/eventslog/sql/SQLStore.java [276:285]
private boolean localDbExists() {
boolean exists = false;
try {
exists = localEventsDb.dbExists();
} catch (SQLException e) {
log.atWarning().withCause(e).log(
"Could not check existence of local database, assume that it doesn't exist");
}
return exists;
}