File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/main/java/org/embulk/input/gcs Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ public class GcsFileInputPlugin
25
25
.addDefaultModules ().build ();
26
26
public static final ConfigMapper CONFIG_MAPPER = CONFIG_MAPPER_FACTORY .createConfigMapper ();
27
27
public static final TaskMapper TASK_MAPPER = CONFIG_MAPPER_FACTORY .createTaskMapper ();
28
- private Logger logger = LoggerFactory .getLogger (GcsFileInputPlugin .class );
28
+ private static final Logger logger = LoggerFactory .getLogger (GcsFileInputPlugin .class );
29
29
@ Override
30
30
public ConfigDiff transaction (ConfigSource config ,
31
31
FileInputPlugin .Control control )
@@ -66,7 +66,7 @@ else if (AuthUtils.AuthMethod.private_key.equals(task.getAuthMethod())) {
66
66
if (task .getPathPrefix ().isPresent ()) {
67
67
task .setFiles (GcsFileInput .listFiles (task ));
68
68
if (task .getFiles ().getTaskCount () == 0 ) {
69
- logger .info ("No file is found. Confirm path_prefix option is correct " );
69
+ logger .info ("No file is found in the path(s) identified by path_prefix " );
70
70
}
71
71
}
72
72
else {
You can’t perform that action at this time.
0 commit comments