From 967508a87db47ebb236ee6dffbaafbf0920ba775 Mon Sep 17 00:00:00 2001 From: Michael Peter Christen <mc@yacy.net> Date: Wed, 9 Dec 2015 01:21:00 +0100 Subject: [PATCH] fix in error handling --- htroot/ViewImage.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htroot/ViewImage.java b/htroot/ViewImage.java index 249c09432..c6c7f0bf0 100644 --- a/htroot/ViewImage.java +++ b/htroot/ViewImage.java @@ -198,7 +198,7 @@ public class ViewImage { BlacklistType.SEARCH, agent); } catch (final IOException e) { /** No need to log full stack trace (in most cases resource is not available because of a network error) */ - ConcurrentLog.fine("ViewImage", "cannot load image. URL : " + url); + ConcurrentLog.fine("ViewImage", "cannot load image. URL : " + url.toNormalform(true)); throw e; } }