* Console, EventLog: Added {BECAME,NOT}_FLOODFILL events. They will now be shown on the console's /events page when the router's ff status changes.

* EventLog: Fix a minor typo.
This commit is contained in:
dg2-new
2014-08-13 21:29:17 +00:00
parent eb97ef4cb2
commit d5edcbc6e1
4 changed files with 15 additions and 3 deletions

View File

@ -32,6 +32,7 @@ public class EventLogHelper extends FormHandler {
private static final String ALL = "all";
private static final String[] _events = new String[] {
EventLog.ABORTED, _x("Aborted startup"),
EventLog.BECAME_FLOODFILL, _x("Enabled floodfill"),
EventLog.CHANGE_IP, _x("Changed IP"),
EventLog.CHANGE_PORT, _x("Changed port"),
EventLog.CLOCK_SHIFT, _x("Clock shifted"),
@ -41,6 +42,7 @@ public class EventLogHelper extends FormHandler {
EventLog.INSTALL_FAILED, _x("Install failed"),
EventLog.NETWORK, _x("Network error"),
EventLog.NEW_IDENT, _x("New router identity"),
EventLog.NOT_FLOODFILL, _x("Disabled floodfill"),
EventLog.OOM, _x("Out of memory error"),
EventLog.REKEYED, _x("New router identity"),
EventLog.RESEED, _x("Reseeded router"),