Strabon
changeset 877:ea1a7bb6c794
changed debug level to info for some output in storeURL
author | Babis Nikolaou <charnik@di.uoa.gr> |
---|---|
date | Fri Feb 22 18:35:07 2013 +0200 (2013-02-22) |
parents | b14650cda87d |
children | cdfe73ee5c85 |
files | runtime/src/main/java/eu/earthobservatory/runtime/generaldb/Strabon.java |
line diff
1.1 --- a/runtime/src/main/java/eu/earthobservatory/runtime/generaldb/Strabon.java Fri Feb 22 18:32:52 2013 +0200 1.2 +++ b/runtime/src/main/java/eu/earthobservatory/runtime/generaldb/Strabon.java Fri Feb 22 18:35:07 2013 +0200 1.3 @@ -373,10 +373,8 @@ 1.4 logger.info("[Strabon.storeURL] Storing file."); 1.5 logger.info("[Strabon.storeURL] URL : {}", url.toString()); 1.6 logger.info("[Strabon.storeURL] Context : {}", ((context == null) ? "default" : context)); 1.7 - if (logger.isDebugEnabled()) { 1.8 - logger.debug("[Strabon.storeURL] Base URI : {}", ((baseURI == null) ? "null" : baseURI)); 1.9 - logger.debug("[Strabon.storeURL] Format : {}", ((format == null) ? "null" : format)); 1.10 - } 1.11 + logger.info("[Strabon.storeURL] Base URI : {}", ((baseURI == null) ? "null" : baseURI)); 1.12 + logger.info("[Strabon.storeURL] Format : {}", ((format == null) ? "null" : format)); 1.13 1.14 InputStream in = (InputStream) url.openStream(); 1.15 InputStreamReader reader = new InputStreamReader(in);