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

Skip to content
Snippets Groups Projects
Verified Commit 5f394260 authored by zzz's avatar zzz
Browse files

NetDB: Don't note 'enabled floodfill' in event log every startup when forced on

parent 0eb4096a
No related branches found
No related tags found
No related merge requests found
......@@ -57,7 +57,10 @@ class FloodfillMonitorJob extends JobImpl {
_facade.setFloodfillEnabledFromMonitor(ff);
if (ff != wasFF) {
if (ff) {
getContext().router().eventLog().addEvent(EventLog.BECAME_FLOODFILL);
if (!(getContext().getBooleanProperty(PROP_FLOODFILL_PARTICIPANT) &&
getContext().router().getUptime() < 3*60*1000)) {
getContext().router().eventLog().addEvent(EventLog.BECAME_FLOODFILL);
}
} else {
getContext().router().eventLog().addEvent(EventLog.NOT_FLOODFILL);
}
......
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