# Functions
AdjustSourceLogLevel sets the log level for the specified source and returns the previous level or a negative value if the source does not exist.
Alert is called for log level ALERT messages.
Crit is called for log level CRIT messages.
Debug is called for log level DEBUG messages.
DefaultLogWriter creates an io Writer to steam output to the Log facility.
DisableTimestamp disable the elapsed time in output.
Emerg is called for log level EMERG messages.
EnableTimestamp enables the elapsed time in output.
Err is called for log level ERR messages.
FindLogLevelName returns the log level name for the argumented value.
FindLogLevelValue returns the numeric log level for the arugmented name or a negative value if the level is not valid.
GenerateReport is called to create a dynamic HTTP page that shows all debug sources.
Info is called for log level INFO messages.
IsAlertEnabled returns true if ALERT logging is enable for the caller.
IsCritEnabled returns true if CRIT logging is enable for the caller.
IsDebugEnabled returns true if DEBUG logging is enable for the caller.
IsEmergEnabled returns true if EMERG logging is enable for the caller.
IsErrEnabled returns true if ERR logging is enable for the caller.
IsInfoEnabled returns true if INFO logging is enable for the caller.
IsLogEnabledSource returns true if logging is enabled at the argumented level for the argumented source.
IsNoticeEnabled returns true if NOTICE logging is enable for the caller.
IsTraceEnabled returns true if TRACE logging is enable for the caller.
IsWarnEnabled returns true if WARNING logging is enable for the caller.
LogMessageSource is for the netfilter interface functions written in C and our LogWriter type that can be created and passed to anything that expects an object with output stream support.
Notice is called for log level NOTICE messages.
SearchSourceLogLevel returns the log level for the specified source or a negative value if the source does not exist.
Shutdown stops the logging service.
Startup starts the logging service.
Trace is called for log level TRACE messages.
Warn is called for log level WARNING messages.
# Constants
LogLevelAlert = syslog.h/LOG_ALERT.
LogLevelCrit = syslog.h/LOG_CRIT.
LogLevelDebug = syslog.h/LOG_DEBUG.
LogLevelEmerg = syslog.h/LOG_EMERG.
LogLevelErr = syslog.h/LOG_ERR.
LogLevelInfo = syslog.h/LOG_INFO.
LogLevelNotice = syslog.h/LOG_NOTICE.
LogLevelTrace = custom value.
LogLevelWarn = syslog.h/LOG_WARNING.