Skip to content

Commit

Permalink
log debug
Browse files Browse the repository at this point in the history
  • Loading branch information
odisseus committed Nov 7, 2024
1 parent f7c1cdc commit accd916
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ class S3Upload(private val s3: S3, private val timeout: Duration = Duration(5, "
Using.resource(getInputStream(entry)) { istream =>
s3.getClient.putObject(req, RequestBody.fromInputStream(istream, entry.getContentLength))
}
logger.info("S3PUT end {}", entry)
logger.debug("S3PUT end {}", entry)
}
}

Expand All @@ -108,6 +108,7 @@ class S3Upload(private val s3: S3, private val timeout: Duration = Duration(5, "
Future {
logger.info("S3DEL {}", entry)
s3.getClient.deleteObject(req)
logger.debug("S3DEL end {}", entry)
}
}

Expand Down

0 comments on commit accd916

Please sign in to comment.