This commit is contained in:
Phillip Webb
2014-06-20 10:28:44 -07:00
parent 445589a5d2
commit bfe4240ed2
2 changed files with 15 additions and 11 deletions

View File

@@ -79,9 +79,9 @@ class DataSourceInitializer implements ApplicationListener<DataSourceInitialized
this.applicationContext.publishEvent(new DataSourceInitializedEvent(
this.dataSource));
}
catch (IllegalStateException e) {
catch (IllegalStateException ex) {
logger.warn("Could not send event to complete DataSource initialization ("
+ e.getMessage() + ")");
+ ex.getMessage() + ")");
}
}
}