* i2ptunnel.config: Remove irc.freshcoffee.i2p

* NetDbRenderer: Adjust debug floodfill estimate
 * StatManager: Don't start thread for an empty config
 * StatisticsManager: Don't publish client tunnel stats
 * Log tweaks
This commit is contained in:
zzz
2014-03-28 14:01:39 +00:00
parent d28d6efb79
commit 2d85b98c20
8 changed files with 22 additions and 12 deletions

View File

@ -48,7 +48,8 @@ public class StatManager {
_context = context;
_frequencyStats = new ConcurrentHashMap<String,FrequencyStat>(8);
_rateStats = new ConcurrentHashMap<String,RateStat>(128);
if (getStatFilter() != null)
String filter = getStatFilter();
if (filter != null && filter.length() > 0)
_statLog = new BufferedStatLog(context);
}