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

Skip to content
Snippets Groups Projects
Commit 79bd5f1c authored by zzz's avatar zzz
Browse files

fix log init problem

parent 1ad1883d
No related branches found
No related tags found
No related merge requests found
......@@ -152,7 +152,9 @@ public class LogManager {
if (_writer != null)
return;
_writer = new LogWriter(this);
Thread t = new I2PThread(_writer, "LogWriter", true);
// NOT an I2PThread, as it contains logging and we end up with problems
Thread t = new Thread(_writer, "LogWriter");
t.setDaemon(true);
t.start();
}
......
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