summaryrefslogtreecommitdiff
path: root/utils/src
diff options
context:
space:
mode:
Diffstat (limited to 'utils/src')
-rw-r--r--utils/src/main/java/at/gv/egiz/bku/utils/urldereferencer/HTTPURLProtocolHandlerImpl.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/utils/src/main/java/at/gv/egiz/bku/utils/urldereferencer/HTTPURLProtocolHandlerImpl.java b/utils/src/main/java/at/gv/egiz/bku/utils/urldereferencer/HTTPURLProtocolHandlerImpl.java
index 5cba2e1d..600e5605 100644
--- a/utils/src/main/java/at/gv/egiz/bku/utils/urldereferencer/HTTPURLProtocolHandlerImpl.java
+++ b/utils/src/main/java/at/gv/egiz/bku/utils/urldereferencer/HTTPURLProtocolHandlerImpl.java
@@ -50,7 +50,8 @@ public class HTTPURLProtocolHandlerImpl implements URLProtocolHandler {
return dereferenceHTTP(url);
}
- protected StreamData dereferenceHTTP(URL url) throws IOException {
+ protected StreamData dereferenceHTTP(URL url) throws IOException {
+ log.debug("Dereferencing url: "+url);
HttpURLConnection httpConn = (HttpURLConnection) url.openConnection();
return new StreamData(url.toString(), httpConn.getContentType(), httpConn
.getInputStream());