suppress warning
This commit is contained in:
parent
aa050e49b2
commit
5e6254b176
1 changed files with 3 additions and 1 deletions
|
@ -192,7 +192,9 @@ public class DocumentHelper {
|
|||
new BufferedReader(new InputStreamReader(new GZIPInputStream(new ByteArrayInputStream(decode)), Constants.UTF_8))) {
|
||||
return ReaderUtil.readText(reader);
|
||||
} catch (final IOException e) {
|
||||
logger.warn("Failed to decode " + hash, e);
|
||||
if (logger.isDebugEnabled()) {
|
||||
logger.debug("Failed to decode " + hash, e);
|
||||
}
|
||||
}
|
||||
}
|
||||
return hash;
|
||||
|
|
Loading…
Add table
Reference in a new issue