Skip to content

Commit

Permalink
error handling - small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
eugenp committed Mar 22, 2016
1 parent 0d8e0dd commit e646e09
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ mvn clean install
mvn cargo:run -f um-webapp/pom.xml
```


# Persistence
By default, the project uses [the H2 in-memory DB](http://www.h2database.com/html/main.html) and - `persistence-h2.properties`.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public void initialize(final ConfigurableApplicationContext applicationContext)
environment.setActiveProfiles(activeProfiles.split(","));
} catch (final IOException ioEx) {
if (envTarget != null) {
logger.warn("Didn't find env-{}.properties in classpath so not loading it in the AppContextInitialized", envTarget);
logger.warn("Didn't find env-" + envTarget + ".properties in classpath so not loading it in the AppContextInitialized", ioEx);
}
}

Expand Down

0 comments on commit e646e09

Please sign in to comment.