fix #2118 change to debug log

This commit is contained in:
Shinsuke Sugaya 2019-05-17 22:39:37 +09:00
parent 9dd1bb3fec
commit 4e79bdf559

View file

@ -64,7 +64,9 @@ public class InputStreamThread extends Thread {
}
} catch (final Exception e) {
running = false;
logger.error("Failed to process an input stream.", e);
if (logger.isDebugEnabled()) {
logger.debug("Failed to process an input stream.", e);
}
}
}
}