* Router, console, i2psnark: Change three errors to warns (tickets #479, #482, #487)

This commit is contained in:
zzz
2011-07-01 11:05:06 +00:00
parent bf832a407e
commit 57d196edd6
7 changed files with 44 additions and 21 deletions

View File

@@ -42,7 +42,8 @@ if (c != null && c.length() > 0) {
if (!response.isCommitted()) {
response.sendError(403, ioe.toString());
} else {
net.i2p.I2PAppContext.getGlobalContext().logManager().getLog(getClass()).error("Error serving flags/" + c + ".png", ioe);
// not an error, happens when the browser closes the stream
net.i2p.I2PAppContext.getGlobalContext().logManager().getLog(getClass()).warn("Error serving flags/" + c + ".png", ioe);
// Jetty doesn't log this
throw ioe;
}