diff --git a/spring-batch-infrastructure/src/main/java/org/springframework/batch/item/file/MultiResourceItemReader.java b/spring-batch-infrastructure/src/main/java/org/springframework/batch/item/file/MultiResourceItemReader.java index b1ac6545a..90d649633 100644 --- a/spring-batch-infrastructure/src/main/java/org/springframework/batch/item/file/MultiResourceItemReader.java +++ b/spring-batch-infrastructure/src/main/java/org/springframework/batch/item/file/MultiResourceItemReader.java @@ -158,7 +158,7 @@ public class MultiResourceItemReader implements ItemReader, ItemStream { throw new IllegalStateException("No resources to read. Set strict=false if this is not an error condition."); } else { - logger.warn("No resources to read"); + logger.warn("No resources to read. Set strict=true if this should be an error condition."); noInput = true; return; }