i2psnark: Reduce log level for common error serving file resources

This commit is contained in:
zzz
2026-08-23 11:21:36 -04:00
parent 5311271498
commit a60f10ba3b
@@ -245,10 +245,10 @@ class BasicServlet extends HttpServlet
}
catch(IOException e)
{
if (_log.shouldLog(Log.WARN))
if (_log.shouldInfo())
// typical browser abort
//_log.warn("Error sending", e);
_log.warn("Error sending " + pathInContext + ": " + e);
_log.info("Error sending " + pathInContext + ": " + e);
throw e;
}
}