Skip to content

Commit

Permalink
Reduce verbosity for standard case (#395)
Browse files Browse the repository at this point in the history
On every startup I'm getting log lines whereas the migrator does nothing
(because there is nothing to migrate)
  • Loading branch information
Vlatombe authored and kmadel committed Sep 21, 2018
1 parent 1484483 commit 1d943d3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public class JobConfigMigrator {

public void migrate(final Job<?, ?> job) {

logger.info(String.format("Migrating job \"%s\" with type %s", job.getName(), job
logger.finest(String.format("Migrating job \"%s\" with type %s", job.getName(), job
.getClass().getName()));

final SlackJobProperty slackJobProperty = job.getProperty(SlackJobProperty.class);
Expand Down

0 comments on commit 1d943d3

Please sign in to comment.