package org.graylog2.syslog4j.impl.backlog.printstream; import java.io.PrintStream; import org.graylog2.syslog4j.SyslogIF; import org.graylog2.syslog4j.SyslogRuntimeException; import org.graylog2.syslog4j.impl.backlog.AbstractSyslogBackLogHandler; /** * PrintStreamSyslogBackLogHandler provides a last-chance mechanism to log messages that fail * (for whatever reason) within the rest of Syslog to a PrintStream. * <p/> * <p>Syslog4j is licensed under the Lesser GNU Public License v2.1. A copy * of the LGPL license is available in the META-INF folder in all * distributions of Syslog4j and in the base directory of the "doc" ZIP.</p> * * @author <syslog4j@productivity.org> * @version $Id: PrintStreamSyslogBackLogHandler.java,v 1.1 2009/01/24 22:00:18 cvs Exp $ */ public class PrintStreamSyslogBackLogHandler extends AbstractSyslogBackLogHandler { protected PrintStream printStream = null; protected boolean appendLinefeed = false; public PrintStreamSyslogBackLogHandler(PrintStream printStream) { this.printStream = printStream; initialize(); } public PrintStreamSyslogBackLogHandler(PrintStream printStream, boolean appendLinefeed) { this.printStream = printStream; this.appendLinefeed = appendLinefeed; initialize(); } public PrintStreamSyslogBackLogHandler(PrintStream printStream, boolean appendLinefeed, boolean appendReason) { this.printStream = printStream; this.appendLinefeed = appendLinefeed; this.appendReason = appendReason; initialize(); } public void initialize() throws SyslogRuntimeException { if (this.printStream == null) { throw new SyslogRuntimeException("PrintStream cannot be null"); } } public void down(SyslogIF syslog, String reason) { this.printStream.println(syslog.getProtocol() + ": DOWN" + (reason != null && !"".equals(reason.trim()) ? " (" + reason + ")" : "")); } public void up(SyslogIF syslog) { this.printStream.println(syslog.getProtocol() + ": UP"); } public void log(SyslogIF syslog, int level, String message, String reason) { String combinedMessage = combine(syslog, level, message, reason); if (this.appendLinefeed) { this.printStream.println(combinedMessage); } else { this.printStream.print(combinedMessage); } } }