ceki 2002/06/11 06:06:11 Modified: src/java/org/apache/log4j Tag: v1_2-branch ConsoleAppender.java Log: Slightly more accurate error reporting. Revision Changes Path No revision No revision 1.12.2.1 +20 -18 jakarta-log4j/src/java/org/apache/log4j/ConsoleAppender.java Index: ConsoleAppender.java =================================================================== RCS file: /home/cvs/jakarta-log4j/src/java/org/apache/log4j/ConsoleAppender.java,v retrieving revision 1.12 retrieving revision 1.12.2.1 diff -u -r1.12 -r1.12.2.1 --- ConsoleAppender.java 24 Apr 2002 01:16:14 -0000 1.12 +++ ConsoleAppender.java 11 Jun 2002 13:06:11 -0000 1.12.2.1 @@ -11,12 +11,12 @@ import org.apache.log4j.helpers.LogLog; /** - ConsoleAppender appends log events to <code>System.out</code> or - <code>System.err</code> using a layout specified by the - user. The default target is <code>System.out</code>. - - @author Ceki Gülcü - @since 1.1 */ + * ConsoleAppender appends log events to <code>System.out</code> or + * <code>System.err</code> using a layout specified by the user. The + * default target is <code>System.out</code>. + * + * @author Ceki Gülcü + * @since 1.1 */ public class ConsoleAppender extends WriterAppender { public static final String SYSTEM_OUT = "System.out"; @@ -47,9 +47,10 @@ } /** - Sets the value of the <b>Target</b> option. Recognized values are - "System.out" and "System.err". Any other value will be ignored. - */ + * Sets the value of the <b>Target</b> option. Recognized values + * are "System.out" and "System.err". Any other value will be + * ignored. + * */ public void setTarget(String value) { String v = value.trim(); @@ -64,12 +65,11 @@ } /** - Returns the current value of the <b>Target</b> property. The default - value of the option is "System.out". - - See also {@link #setTarget}. - - */ + * Returns the current value of the <b>Target</b> property. The + * default value of the option is "System.out". + * + * See also {@link #setTarget}. + * */ public String getTarget() { return target; @@ -77,7 +77,7 @@ void targetWarn(String val) { LogLog.warn("["+val+"] should be System.out or System.err."); - LogLog.warn("Using System.out (default)."); + LogLog.warn("Using previously set target, System.out by default."); } public @@ -90,8 +90,10 @@ } /** - Override the parent method to do nothing. - */ + * This method overrides the parent {@link + * WriterAppender#closeWriter} implementation to do nothing because + * the console stream is not ours to close. + * */ protected final void closeWriter() {
-- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>