Skip to content

Commit 57bb44b

Browse files
committed
Change log level for Configuration
1 parent fa12789 commit 57bb44b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Diff for: src/main/java/org/embulk/input/hdfs/ConfigurationFactory.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public static Configuration create(Task task)
3636
Configuration c = new Configuration();
3737
for (String f : task.getConfigFiles()) {
3838
try {
39-
logger.debug("embulk-input-hdfs: load a config file: {}", f);
39+
logger.trace("embulk-input-hdfs: load a config file: {}", f);
4040
c.addResource(new File(f).toURI().toURL());
4141
}
4242
catch (MalformedURLException e) {
@@ -45,15 +45,15 @@ public static Configuration create(Task task)
4545
}
4646

4747
for (Map.Entry<String, String> entry : task.getConfig().entrySet()) {
48-
logger.debug("embulk-input-hdfs: load a config: {}:{}", entry.getKey(), entry.getValue());
48+
logger.trace("embulk-input-hdfs: load a config: {}:{}", entry.getKey(), entry.getValue());
4949
c.set(entry.getKey(), entry.getValue());
5050
}
5151

5252
// For logging
5353
for (Map.Entry<String, String> entry : c) {
54-
logger.trace("embulk-input-hdfs: {}: {}", entry.getKey(), entry.getValue());
54+
logger.trace("embulk-input-hdfs: loaded: {}: {}", entry.getKey(), entry.getValue());
5555
}
56-
logger.trace("embulk-input-hdfs: Resource Files: {}", c);
56+
logger.trace("embulk-input-hdfs: loaded files: {}", c);
5757

5858
return c;
5959
}

0 commit comments

Comments
 (0)