forked from I2P_Developers/i2p.i2p
log message fix
reported by drzed
This commit is contained in:
@ -589,7 +589,7 @@ class EventPumper implements Runnable {
|
|||||||
if (probAccept >= 128 || _context.random().nextInt(128) < probAccept) {
|
if (probAccept >= 128 || _context.random().nextInt(128) < probAccept) {
|
||||||
if (_log.shouldWarn())
|
if (_log.shouldWarn())
|
||||||
_log.warn("Probabalistic drop incoming (p=" + probAccept +
|
_log.warn("Probabalistic drop incoming (p=" + probAccept +
|
||||||
"/128 last rate " + last + "/min current rate " +
|
"/128) last rate " + last + "/min current rate " +
|
||||||
(int) (currentRate * 60*1000));
|
(int) (currentRate * 60*1000));
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
@ -623,7 +623,7 @@ class EstablishmentManager {
|
|||||||
if (probAccept >= 128 || _context.random().nextInt(128) < probAccept) {
|
if (probAccept >= 128 || _context.random().nextInt(128) < probAccept) {
|
||||||
if (_log.shouldWarn())
|
if (_log.shouldWarn())
|
||||||
_log.warn("Probabalistic drop incoming (p=" + probAccept +
|
_log.warn("Probabalistic drop incoming (p=" + probAccept +
|
||||||
"/128 last rate " + last + "/min current rate " +
|
"/128) last rate " + last + "/min current rate " +
|
||||||
(int) (currentRate * 60*1000));
|
(int) (currentRate * 60*1000));
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user