Package ch.qos.logback.core.net
Class SyslogAppenderBase<E>
java.lang.Object
ch.qos.logback.core.spi.ContextAwareBase
ch.qos.logback.core.AppenderBase<E>
ch.qos.logback.core.net.SyslogAppenderBase<E>
- Type Parameters:
E
-
- All Implemented Interfaces:
Appender<E>
,ContextAware
,FilterAttachable<E>
,LifeCycle
- Direct Known Subclasses:
SyslogAppender
Deprecated.
This internal logback API is not supported by AEM as a Cloud Service.
Base class for SyslogAppender.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionDeprecated.abstract SyslogOutputStream
Deprecated.static int
facilityStringToint
(String facilityStr) Deprecated.Returns the integer value corresponding to the named syslog facility.Deprecated.Returns the Charset used to encode String messages into byte sequences when writing to syslog.Deprecated.Returns the string value of the Facility option.Deprecated.int
Deprecated.int
getPort()
Deprecated.abstract int
getSeverityForEvent
(Object eventObject) Deprecated.Deprecated.Seeinvalid @link
{@link #setSuffixPattern(String).
Deprecated.Returns the value of the SyslogHost option.void
setCharset
(Charset charset) Deprecated.The Charset to use when encoding messages into byte sequences.void
setFacility
(String facilityStr) Deprecated.The Facility option must be set one of the strings KERN, USER, MAIL, DAEMON, AUTH, SYSLOG, LPR, NEWS, UUCP, CRON, AUTHPRIV, FTP, NTP, AUDIT, ALERT, CLOCK, LOCAL0, LOCAL1, LOCAL2, LOCAL3, LOCAL4, LOCAL5, LOCAL6, LOCAL7.void
Deprecated.void
setMaxMessageSize
(int maxMessageSize) Deprecated.Maximum size for the syslog message (in characters); messages longer than this are truncated.void
setPort
(int port) Deprecated.The port number on the syslog server to connect to.void
setSuffixPattern
(String suffixPattern) Deprecated.The suffixPattern option specifies the format of the non-standardized part of the message sent to the syslog server.void
setSyslogHost
(String syslogHost) Deprecated.The SyslogHost option is the name of the the syslog host where log output should go.void
start()
Deprecated.void
stop()
Deprecated.Methods inherited from class ch.qos.logback.core.AppenderBase
addFilter, clearAllFilters, doAppend, getCopyOfAttachedFiltersList, getFilterChainDecision, getName, isStarted, setName, toString
Methods inherited from class ch.qos.logback.core.spi.ContextAwareBase
addError, addError, addInfo, addInfo, addStatus, addWarn, addWarn, getContext, getStatusManager, setContext
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface ch.qos.logback.core.spi.ContextAware
addError, addError, addInfo, addInfo, addStatus, addWarn, addWarn, getContext, setContext
-
Constructor Details
-
SyslogAppenderBase
public SyslogAppenderBase()Deprecated.
-
-
Method Details
-
start
public void start()Deprecated.- Specified by:
start
in interfaceLifeCycle
- Overrides:
start
in classAppenderBase<E>
-
createOutputStream
public abstract SyslogOutputStream createOutputStream() throws UnknownHostException, SocketExceptionDeprecated.- Throws:
UnknownHostException
SocketException
-
buildLayout
Deprecated. -
getSeverityForEvent
Deprecated. -
facilityStringToint
Deprecated.Returns the integer value corresponding to the named syslog facility.- Throws:
IllegalArgumentException
- if the facility string is not recognized
-
getSyslogHost
Deprecated.Returns the value of the SyslogHost option. -
setSyslogHost
Deprecated.The SyslogHost option is the name of the the syslog host where log output should go. WARNING If the SyslogHost is not set, then this appender will fail. -
getFacility
Deprecated.Returns the string value of the Facility option. SeesetFacility(java.lang.String)
for the set of allowed values. -
setFacility
Deprecated.The Facility option must be set one of the strings KERN, USER, MAIL, DAEMON, AUTH, SYSLOG, LPR, NEWS, UUCP, CRON, AUTHPRIV, FTP, NTP, AUDIT, ALERT, CLOCK, LOCAL0, LOCAL1, LOCAL2, LOCAL3, LOCAL4, LOCAL5, LOCAL6, LOCAL7. Case is not important.See
SyslogConstants
and RFC 3164 for more information about the Facility option. -
getPort
public int getPort()Deprecated.- Returns:
-
setPort
public void setPort(int port) Deprecated.The port number on the syslog server to connect to. Normally, you would not want to change the default value, that is 514. -
getMaxMessageSize
public int getMaxMessageSize()Deprecated.- Returns:
-
setMaxMessageSize
public void setMaxMessageSize(int maxMessageSize) Deprecated.Maximum size for the syslog message (in characters); messages longer than this are truncated. The default value is 65400 (which is near the maximum for syslog-over-UDP). Note that the value is characters; the number of bytes may vary if non-ASCII characters are present. -
getLayout
Deprecated. -
setLayout
Deprecated. -
stop
public void stop()Deprecated.- Specified by:
stop
in interfaceLifeCycle
- Overrides:
stop
in classAppenderBase<E>
-
getSuffixPattern
Deprecated.Seeinvalid @link
{@link #setSuffixPattern(String).
- Returns:
-
setSuffixPattern
Deprecated.The suffixPattern option specifies the format of the non-standardized part of the message sent to the syslog server.- Parameters:
suffixPattern
-
-
getCharset
Deprecated.Returns the Charset used to encode String messages into byte sequences when writing to syslog. -
setCharset
Deprecated.The Charset to use when encoding messages into byte sequences.- Parameters:
charset
-
-