@@ -36,7 +36,7 @@ public static Configuration create(Task task)
36
36
Configuration c = new Configuration ();
37
37
for (String f : task .getConfigFiles ()) {
38
38
try {
39
- logger .debug ("embulk-input-hdfs: load a config file: {}" , f );
39
+ logger .trace ("embulk-input-hdfs: load a config file: {}" , f );
40
40
c .addResource (new File (f ).toURI ().toURL ());
41
41
}
42
42
catch (MalformedURLException e ) {
@@ -45,15 +45,15 @@ public static Configuration create(Task task)
45
45
}
46
46
47
47
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 ());
49
49
c .set (entry .getKey (), entry .getValue ());
50
50
}
51
51
52
52
// For logging
53
53
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 ());
55
55
}
56
- logger .trace ("embulk-input-hdfs: Resource Files : {}" , c );
56
+ logger .trace ("embulk-input-hdfs: loaded files : {}" , c );
57
57
58
58
return c ;
59
59
}
0 commit comments