diff options
author | Jeremias Maerki <jeremias@apache.org> | 2005-09-19 14:21:28 +0000 |
---|---|---|
committer | Jeremias Maerki <jeremias@apache.org> | 2005-09-19 14:21:28 +0000 |
commit | cc51cb69232475d7f950fe722f8e82b06d9504d9 (patch) | |
tree | cfd2a344add427ec35b980641b61b1bac3e39ef7 | |
parent | b488929a93b827904c9efc1290d895b94beb27af (diff) | |
download | xmlgraphics-fop-cc51cb69232475d7f950fe722f8e82b06d9504d9.tar.gz xmlgraphics-fop-cc51cb69232475d7f950fe722f8e82b06d9504d9.zip |
Commented out the code that causes an NPE.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@290167 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | src/java/org/apache/fop/cli/CommandLineOptions.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/java/org/apache/fop/cli/CommandLineOptions.java b/src/java/org/apache/fop/cli/CommandLineOptions.java index 7e7082e85..ab7a9b080 100644 --- a/src/java/org/apache/fop/cli/CommandLineOptions.java +++ b/src/java/org/apache/fop/cli/CommandLineOptions.java @@ -468,10 +468,10 @@ public class CommandLineOptions implements Constants { // Set the level for the logger creates already. ((CommandLineLogger) log).setLogLevel(level); } else { - log.warn("Setting the log level to debug probably failed."); - log.warn("Configure the log level using Java system properties,"); - log.warn("or use FOP's command line logger,"); - log.warn("which is the default on the command line."); + //log.warn("Setting the log level to debug probably failed."); + //log.warn("Configure the log level using Java system properties,"); + //log.warn("or use FOP's command line logger,"); + //log.warn("which is the default on the command line."); } } |