coldbox.system.logging.appenders
:async
property in your configuration. ( This happens at the logger
level and is available to all appenders out of the box, even ones that you create yourself!extend
them or create new ones simply by leveraging the LogBox API. To customize LogBox appenders for your own unique needs you would simply extend the core appender class: coldbox.system.logging.AbstractAppender
and implementing the init()
and logMessage()
methods. Extending LogBox will be reviewed in greater detail over the next few sections.