Skip to content

Commit 32bfed2

Browse files
committed
Check the system properties to possibly set DEBUG
1 parent 969d3b4 commit 32bfed2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/edu/stanford/nlp/ie/ClassifierCombiner.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public class ClassifierCombiner<IN extends CoreMap & HasWord> extends AbstractSe
6060
/** A logger for this class */
6161
private static final Redwood.RedwoodChannels log = Redwood.channels(ClassifierCombiner.class);
6262

63-
private static final boolean DEBUG = false;
63+
private static final boolean DEBUG = System.getProperty("ClassifierCombiner", null) != null;;
6464

6565
private List<AbstractSequenceClassifier<IN>> baseClassifiers;
6666

0 commit comments

Comments
 (0)