This is an automated email from the ASF dual-hosted git repository. orpiske pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel-kafka-connector.git
commit f9a3e56093ea76648c82d05634b09fa66caf7bf5 Author: Otavio Rodolfo Piske <[email protected]> AuthorDate: Wed Jan 13 14:37:19 2021 +0100 Fixed incorrect number of arguments in HDFS test logs --- .../apache/camel/kafkaconnector/hdfs/sink/CamelSinkHDFSITCase.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/itests-hdfs/src/test/java/org/apache/camel/kafkaconnector/hdfs/sink/CamelSinkHDFSITCase.java b/tests/itests-hdfs/src/test/java/org/apache/camel/kafkaconnector/hdfs/sink/CamelSinkHDFSITCase.java index 1a27f5c..00234b5 100644 --- a/tests/itests-hdfs/src/test/java/org/apache/camel/kafkaconnector/hdfs/sink/CamelSinkHDFSITCase.java +++ b/tests/itests-hdfs/src/test/java/org/apache/camel/kafkaconnector/hdfs/sink/CamelSinkHDFSITCase.java @@ -70,14 +70,14 @@ public class CamelSinkHDFSITCase extends AbstractKafkaTest { if (!hdfsEasy.delete(currentBasePath)) { // This is OK: directory may not exist on the path - LOG.debug("The directory at {} was not removed {}", currentBasePath.getName()); + LOG.debug("The directory at {} was not removed", currentBasePath.getName()); } } @AfterEach public void tearDown() { if (!hdfsEasy.delete(currentBasePath)) { - LOG.warn("The directory at {} was not removed {}", currentBasePath.getName()); + LOG.warn("The directory at {} was not removed", currentBasePath.getName()); } }
