Slots
- ANCESTORS - The log categories this category inherits from.
- CHILDER - The log categories which inherit from this category.
- APPENDERS - A list of appender objects this category sholud send messages to.
- LEVEL - This category's log level.
- NAME
Hierachy
Precedence List
Source
(defclass log-category ()
((ancestors :initform '() :accessor ancestors :initarg :ancestors
:documentation "The log categories this category inherits from.")
(childer :initform '() :accessor childer :initarg :childer
:documentation "The log categories which inherit from this category.")
(appenders :initform '() :accessor appenders :initarg :appenders
:documentation "A list of appender objects this category sholud send messages to.")
(level :initform +debug+ :initarg :level :accessor level
:documentation "This category's log level.")
(name :initarg :name :accessor name)))
Source Context