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

Skip to content
Snippets Groups Projects
Commit f4b49f74 authored by zzz's avatar zzz
Browse files

change low mem error to warn

parent db7e4a27
No related branches found
No related tags found
No related merge requests found
...@@ -102,7 +102,7 @@ public final class ByteCache { ...@@ -102,7 +102,7 @@ public final class ByteCache {
public static void clearAll() { public static void clearAll() {
for (ByteCache bc : _caches.values()) for (ByteCache bc : _caches.values())
bc.clear(); bc.clear();
I2PAppContext.getGlobalContext().logManager().getLog(ByteCache.class).error("WARNING: Low memory, clearing byte caches"); I2PAppContext.getGlobalContext().logManager().getLog(ByteCache.class).warn("WARNING: Low memory, clearing byte caches");
} }
private Log _log; private Log _log;
......
...@@ -18,7 +18,7 @@ public class RouterVersion { ...@@ -18,7 +18,7 @@ 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 = 18; public final static long BUILD = 19;
/** for example "-test" */ /** for example "-test" */
public final static String EXTRA = "-rc"; public final static String EXTRA = "-rc";
......
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