I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 335736b2 authored by zab2's avatar zab2
Browse files

Fix log strings

parent f0b9986e
No related branches found
No related tags found
No related merge requests found
......@@ -1346,12 +1346,12 @@ public class I2PTunnelHTTPClient extends I2PTunnelHTTPClientBase implements Runn
handleClientException(ex, out, targetRequest, usingWWWProxy, currentProxy, requestId);
} catch(I2PException ex) {
if(_log.shouldLog(Log.INFO)) {
_log.info("getPrefix(requestId) + Error trying to connect", ex);
_log.info(getPrefix(requestId) + "Error trying to connect", ex);
}
handleClientException(ex, out, targetRequest, usingWWWProxy, currentProxy, requestId);
} catch(OutOfMemoryError oom) {
IOException ex = new IOException("OOM");
_log.error("getPrefix(requestId) + Error trying to connect", oom);
_log.error(getPrefix(requestId) + "Error trying to connect", oom);
handleClientException(ex, out, targetRequest, usingWWWProxy, currentProxy, requestId);
} finally {
// only because we are running it inline
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment