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

[244876] [dstore] make DEBUG a non-final variable of the ServerLogger class

This commit is contained in:
David McKnight 2008-08-22 12:54:09 +00:00
parent 3edcbb2ece
commit 495a19fd05

View file

@ -16,6 +16,7 @@
* Jacob Garcowski (IBM) - [232738] [dstore] Delay creation of log file until written to
* Noriaki Takatsu (IBM) - [232443] [multithread] A single rsecomm.log for all clients
* Noriaki Takatsu (IBM) - [239419] [multithread] Dynamically change the level of logging
* David McKnight (IBM) - [244876] [dstore] make DEBUG a non-final variable of the ServerLogger class
********************************************************************************/
package org.eclipse.dstore.core.server;
@ -50,7 +51,9 @@ public class ServerLogger implements IServerLogger
private Object writeLock = new Object();
private PrintWriter _logFileStream = null;
public static final boolean DEBUG = false;
// note that, in 3.0, this variable was final but, as of 3.0.1, it's not
public static boolean DEBUG = false;
private int log_level = 0;
private boolean initialized = false;