fix #860 add debug log.

This commit is contained in:
Shinsuke Sugaya 2017-02-02 17:25:59 +09:00
parent a5fe68c333
commit 2da33b4d46

View file

@ -337,6 +337,9 @@ public abstract class AbstractFessFileTransformer extends AbstractTransformer im
if (!fessConfig.isCrawlerIgnoreContentException()) {
throw e;
}
if (logger.isDebugEnabled()) {
logger.debug("Could not get a text.", e);
}
}
return new ExtractData();
}