Skip to content

Commit

Permalink
AbstractSingleImageLayer: Correct logging.
Browse files Browse the repository at this point in the history
  • Loading branch information
Björn Höfling committed Jan 19, 2021
1 parent 5bef44b commit 18eaba3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ protected BufferedImage fetchImage(

final BufferedImage image = ImageIO.read(httpResponse.getBody());
if (image == null) {
LOGGER.warn("Cannot read image from %a", request.getURI());
LOGGER.warn("Cannot read image from {}", request.getURI());
this.registry.counter(baseMetricName + ".error").inc();
if (getFailOnError()) {
throw new RuntimeException("Cannot read image from " + request.getURI());
Expand Down

0 comments on commit 18eaba3

Please sign in to comment.