Skip to content

Commit

Permalink
[JENKINS-46577] cleanup logging
Browse files Browse the repository at this point in the history
  • Loading branch information
Cyrille Le Clerc committed Dec 10, 2017
1 parent 76e6db8 commit ef3d4cb
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -340,7 +340,7 @@ protected synchronized void initializeDatabase() {
} else {
try (Statement stmt = cnn.createStatement()) {
String sqlScript = IOUtils.toString(sqlScriptInputStream);
LOGGER.log(Level.INFO, "Execute database migration script {0}", sqlScriptPath);
LOGGER.log(Level.FINE, "Execute database migration script {0}", sqlScriptPath);
stmt.execute(sqlScript);
} catch (IOException e) {
throw new RuntimeIoException("Exception reading " + sqlScriptPath, e);
Expand Down

0 comments on commit ef3d4cb

Please sign in to comment.