Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -458,6 +458,9 @@ private void doCreateStartDirectory(File file) {
boolean created = operations.buildDirectory(file.getPath(), absolute);
if (!created) {
LOG.warn("Cannot auto create starting directory: {}", file);
Comment thread
davsclaus marked this conversation as resolved.
} else {
Comment thread
davsclaus marked this conversation as resolved.
// CAMEL-24855: INFO so the log says why the consumer is waiting on an empty directory
LOG.info("Auto-created starting directory: {}; waiting for files", file);
}
}

Expand Down
Loading