Changeset 6501d40
- Timestamp:
- Sep 6, 2008 1:47:30 PM (12 years ago)
- Branches:
- master
- Children:
- 808557d
- Parents:
- ef328ed3
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
router/java/src/net/i2p/router/tunnel/pool/BuildHandler.java
ref328ed3 r6501d40 252 252 } 253 253 int howBad = statuses[record]; 254 if (_log.shouldLog(Log.INFO))255 _log.info(msg.getUniqueId() + ": Peer " + peer.toBase64() + " replied with status " + howBad);256 257 254 // If this tunnel member isn't ourselves 258 255 if (!peer.toBase64().equals(_context.routerHash().toBase64())) { … … 269 266 _context.statManager().addRateData("tunnel.tierReject" + bwTier, 1, 0); 270 267 } 268 if (_log.shouldLog(Log.INFO)) 269 _log.info(msg.getUniqueId() + ": Peer " + peer.toBase64() + " replied with status " + howBad); 271 270 } 272 271 … … 431 430 _log.warn("Request " + _state.msg.getUniqueId() 432 431 + " could no be satisfied, as the next peer could not be found: " + _nextPeer.toBase64()); 432 // ??? should we blame the peer here? getContext().profileManager().tunnelTimedOut(_nextPeer); 433 433 getContext().messageHistory().tunnelRejected(_state.fromHash, new TunnelId(_req.readReceiveTunnelId()), _nextPeer, 434 434 "rejected because we couldn't find " + _nextPeer.toBase64() + ": " +
Note: See TracChangeset
for help on using the changeset viewer.