Aitozi commented on code in PR #211:
URL: 
https://github.com/apache/flink-kubernetes-operator/pull/211#discussion_r872917451


##########
flink-kubernetes-operator/src/main/java/org/apache/flink/kubernetes/operator/artifact/FileSystemBasedArtifactFetcher.java:
##########
@@ -39,6 +39,7 @@ public File fetch(String uri, File targetDir) throws 
Exception {
         FileSystem fileSystem = source.getFileSystem();
         String fileName = source.getName();
         File targetFile = new File(targetDir, fileName);
+        LOG.info("Coping file from {} to {}", source, targetFile);
         try (var inputStream = fileSystem.open(source)) {
             FileUtils.copyToFile(inputStream, targetFile);
         }

Review Comment:
   I think the line below this already log this. It's in `debug` level.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@flink.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to