forked from I2P_Developers/i2p.i2p
Streaming: Change pushBackRTO() log error to warn (ticket #2739)
This commit is contained in:
@ -1458,7 +1458,8 @@ class Connection {
|
|||||||
|
|
||||||
public synchronized void pushBackRTO(int rto) {
|
public synchronized void pushBackRTO(int rto) {
|
||||||
if (!_scheduled) {
|
if (!_scheduled) {
|
||||||
_log.log(Log.ERROR, Connection.this + " timer was not scheduled", new Exception());
|
if (_log.shouldWarn())
|
||||||
|
_log.warn(Connection.this + " timer was not scheduled", new Exception());
|
||||||
}
|
}
|
||||||
reschedule(rto, false);
|
reschedule(rto, false);
|
||||||
}
|
}
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
2020-05-14 zzz
|
||||||
|
* Streaming: Change pushBackRTO() log error to warn (ticket #2739)
|
||||||
|
|
||||||
2020-05-13 zzz
|
2020-05-13 zzz
|
||||||
* Console:
|
* Console:
|
||||||
- Fix option text on /confignet (ticket #2738)
|
- Fix option text on /confignet (ticket #2738)
|
||||||
|
@ -18,10 +18,10 @@ public class RouterVersion {
|
|||||||
/** deprecated */
|
/** deprecated */
|
||||||
public final static String ID = "Monotone";
|
public final static String ID = "Monotone";
|
||||||
public final static String VERSION = CoreVersion.VERSION;
|
public final static String VERSION = CoreVersion.VERSION;
|
||||||
public final static long BUILD = 20;
|
public final static long BUILD = 21;
|
||||||
|
|
||||||
/** for example "-test" */
|
/** for example "-test" */
|
||||||
public final static String EXTRA = "";
|
public final static String EXTRA = "-rc";
|
||||||
public final static String FULL_VERSION = VERSION + "-" + BUILD + EXTRA;
|
public final static String FULL_VERSION = VERSION + "-" + BUILD + EXTRA;
|
||||||
public static void main(String args[]) {
|
public static void main(String args[]) {
|
||||||
System.out.println("I2P Router version: " + FULL_VERSION);
|
System.out.println("I2P Router version: " + FULL_VERSION);
|
||||||
|
Reference in New Issue
Block a user