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

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

* configloggging: Fix clearing log overrides

parent 7bd83f83
No related branches found
No related tags found
No related merge requests found
......@@ -70,7 +70,7 @@ public class ConfigLoggingHandler extends FormHandler {
private void saveChanges() {
boolean shouldSave = false;
if (_levels != null || _newLogClass != null) {
if ((_levels != null && _levels.length() > 0) || _newLogClass != null) {
try {
Properties props = new Properties();
if (_levels != null)
......@@ -85,8 +85,9 @@ public class ConfigLoggingHandler extends FormHandler {
_context.logManager().getLog(ConfigLoggingHandler.class).error("Error reading from the props?", ioe);
addFormError("Error updating the log limits - levels not valid");
}
} else {
} else if (!_context.logManager().getLimits().isEmpty()) {
_context.logManager().setLimits(null);
shouldSave = true;
addFormNotice("Log limits cleared");
}
......
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