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

Skip to content
Snippets Groups Projects
Commit 6cef4f90 authored by zzz's avatar zzz
Browse files

* Logs: Again, fix setting log filename (ticket #805)

parent f5e416d6
No related branches found
No related tags found
No related merge requests found
......@@ -352,7 +352,7 @@ public class LogManager {
// so it may be set in the UI.
String filename = config.getProperty(PROP_FILENAME, DEFAULT_FILENAME);
String filenameOverride = _context.getProperty(FILENAME_OVERRIDE_PROP);
if (filenameOverride != null && !filename.equals(DEFAULT_FILENAME))
if (filenameOverride != null && filename.equals(DEFAULT_FILENAME))
setBaseLogfilename(filenameOverride);
else
setBaseLogfilename(filename);
......
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