Skip to content

Commit 71978bc

Browse files
update log message
1 parent 1430c88 commit 71978bc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/org/embulk/input/gcs/GcsFileInputPlugin.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public class GcsFileInputPlugin
2525
.addDefaultModules().build();
2626
public static final ConfigMapper CONFIG_MAPPER = CONFIG_MAPPER_FACTORY.createConfigMapper();
2727
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);
2929
@Override
3030
public ConfigDiff transaction(ConfigSource config,
3131
FileInputPlugin.Control control)
@@ -66,7 +66,7 @@ else if (AuthUtils.AuthMethod.private_key.equals(task.getAuthMethod())) {
6666
if (task.getPathPrefix().isPresent()) {
6767
task.setFiles(GcsFileInput.listFiles(task));
6868
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");
7070
}
7171
}
7272
else {

0 commit comments

Comments
 (0)