1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-15 13:05:22 +02:00

[244876] [dstore] Add Javadoc for ServerLogger#DEBUG

This commit is contained in:
Martin Oberhuber 2008-09-04 11:41:43 +00:00
parent be89dc70e6
commit 1a6aa51567

View file

@ -51,7 +51,10 @@ public class ServerLogger implements IServerLogger
private Object writeLock = new Object(); private Object writeLock = new Object();
private PrintWriter _logFileStream = null; private PrintWriter _logFileStream = null;
// note that, in 3.0, this variable was final but, as of 3.0.1, it's not /**
* Switch to enable debug-level logging. Note that, in 3.0, this variable
* was final but, as of 3.0.1, it's not.
*/
public static boolean DEBUG = false; public static boolean DEBUG = false;
private int log_level = 0; private int log_level = 0;