We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5fcf8cd commit ea7c1aaCopy full SHA for ea7c1aa
jflyte/src/main/java/org/flyte/jflyte/PackageLoader.java
@@ -91,7 +91,7 @@ private static void handleArtifact(
91
FileSystem fileSystem = FileSystemLoader.getFileSystem(fileSystems, artifact.location());
92
93
try (ReadableByteChannel reader = fileSystem.reader(artifact.location())) {
94
- LOG.info("Copied {} to {}", artifact.location(), path);
+ LOG.debug("Copied {} to {}", artifact.location(), path);
95
96
Files.copy(Channels.newInputStream(reader), path);
97
} catch (IOException e) {
0 commit comments