Streaming: Change pushBackRTO() log error to warn (ticket #2739)

This commit is contained in:
zzz
2020-05-14 18:47:54 +00:00
parent fad9d0e3da
commit 40b312d7c1
3 changed files with 7 additions and 3 deletions

View File

@ -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);
} }

View File

@ -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)

View File

@ -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);