Skip to content

Commit

Permalink
Change to Debug Log Level to reduce verbosity
Browse files Browse the repository at this point in the history
Signed-off-by: Rafael Ribeiro Raposo <[email protected]>
  • Loading branch information
RRap0so committed Sep 19, 2023
1 parent 5fcf8cd commit d2a61db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jflyte/src/main/java/org/flyte/jflyte/PackageLoader.java
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ private static void handleArtifact(
FileSystem fileSystem = FileSystemLoader.getFileSystem(fileSystems, artifact.location());

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

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

0 comments on commit d2a61db

Please sign in to comment.