log tweak, bump

This commit is contained in:
zzz
2015-12-13 17:35:00 +00:00
parent 3c5f9d0bc3
commit 95946606ef
3 changed files with 5 additions and 2 deletions

View File

@ -1,3 +1,6 @@
2015-12-13 zzz
* Data: Optimize router info writes, disable caching
2015-12-12 zzz
* Router:
- Add family public key to router info (ticket #1510)

View File

@ -18,7 +18,7 @@ public class RouterVersion {
/** deprecated */
public final static String ID = "Monotone";
public final static String VERSION = CoreVersion.VERSION;
public final static long BUILD = 13;
public final static long BUILD = 14;
/** for example "-test" */
public final static String EXTRA = "";

View File

@ -900,7 +900,7 @@ public class KademliaNetworkDatabaseFacade extends NetworkDatabaseFacade {
boolean validFamily = fkc.verify(routerInfo);
if (!validFamily) {
if (_log.shouldWarn())
_log.warn("Bad family sig: " + routerInfo);
_log.warn("Bad family sig: " + routerInfo.getHash());
}
// todo store in RI
}