Skip to content

Commit ea7c1aa

Browse files
authored
Change to Debug Log Level to reduce verbosity (#242)
Signed-off-by: Rafael Ribeiro Raposo <[email protected]>
1 parent 5fcf8cd commit ea7c1aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jflyte/src/main/java/org/flyte/jflyte/PackageLoader.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ private static void handleArtifact(
9191
FileSystem fileSystem = FileSystemLoader.getFileSystem(fileSystems, artifact.location());
9292

9393
try (ReadableByteChannel reader = fileSystem.reader(artifact.location())) {
94-
LOG.info("Copied {} to {}", artifact.location(), path);
94+
LOG.debug("Copied {} to {}", artifact.location(), path);
9595

9696
Files.copy(Channels.newInputStream(reader), path);
9797
} catch (IOException e) {

0 commit comments

Comments
 (0)