ch.qos.logback.core.ConsoleAppender Maven / Gradle / Ivy
/**
* Logback: the reliable, generic, fast and flexible logging framework.
* Copyright (C) 1999-2013, QOS.ch. All rights reserved.
*
* This program and the accompanying materials are dual-licensed under
* either the terms of the Eclipse Public License v1.0 as published by
* the Eclipse Foundation
*
* or (per the licensee's choosing)
*
* under the terms of the GNU Lesser General Public License version 2.1
* as published by the Free Software Foundation.
*/
package ch.qos.logback.core;
import java.io.OutputStream;
import java.util.Arrays;
import ch.qos.logback.core.joran.spi.ConsoleTarget;
import ch.qos.logback.core.status.Status;
import ch.qos.logback.core.status.WarnStatus;
/**
* ConsoleAppender appends log events to System.out
or
* System.err
using a layout specified by the user. The default
* target is System.out
.
*
* For more information about this appender, please refer to the online manual
* at http://logback.qos.ch/manual/appenders.html#ConsoleAppender
*
* @author Ceki Gülcü
* @author Tom SH Liu
* @author Ruediger Dohna
* @deprecated This appender has been deprecated for {@link ch.qos.logback.classic.android.LogcatAppender}.
*/
@Deprecated
public class ConsoleAppender extends OutputStreamAppender {
protected ConsoleTarget target = ConsoleTarget.SystemOut;
/**
* Sets the value of the Target option. Recognized values are
* "System.out" and "System.err". Any other value will be ignored.
* @param value desired console-output target
*/
public void setTarget(String value) {
ConsoleTarget t = ConsoleTarget.findByName(value.trim());
if (t == null) {
targetWarn(value);
} else {
target = t;
}
}
/**
* Returns the current value of the target property. The default value
* of the option is "System.out".
*
* See also {@link #setTarget}.
* @return the console-output target's name
*/
public String getTarget() {
return target.getName();
}
private void targetWarn(String val) {
Status status = new WarnStatus("[" + val + "] should be one of "
+ Arrays.toString(ConsoleTarget.values()), this);
status.add(new WarnStatus(
"Using previously set target, System.out by default.", this));
addStatus(status);
}
@Override
public void start() {
OutputStream targetStream = target.getStream();
setOutputStream(targetStream);
super.start();
}
}