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

Skip to content
Snippets Groups Projects
Commit 393a0416 authored by jrandom's avatar jrandom Committed by zzz
Browse files

honor some updates correctly

parent e97e834a
No related branches found
No related tags found
No related merge requests found
......@@ -41,16 +41,16 @@ public class ConfigLoggingHandler extends FormHandler {
public void setDefaultloglevel(String level) {
_defaultLevel = (level != null ? level.trim() : null);
}
public void setFilename(String filename) {
public void setLogfilename(String filename) {
_filename = (filename != null ? filename.trim() : null);
}
public void setRecordformat(String format) {
public void setLogformat(String format) {
_recordFormat = (format != null ? format.trim() : null);
}
public void setDateformat(String format) {
public void setLogdateformat(String format) {
_dateFormat = (format != null ? format.trim() : null);
}
public void setFilesize(String size) {
public void setLogfilesize(String size) {
_fileSize = (size != null ? size.trim() : null);
}
......
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