Adding Appenders
The first thing you need to do in your config object is add appenders. Each appender is added via the appender()
method.
Parameters:
Name | Description |
name | A unique name for the appender to register. Only unique names can be registered per instance. |
class | The appender's class to register. We will create, init it and register it for you. |
properties | The structure of properties to configure this appender with. (OPTIONAL) |
layout | The layout class path to use in this appender for custom message rendering. (OPTIONAL) |
levelMin | The numerical or English word of the minimal logging level (OPTIONAL, defaults to 0 [FATAL].) |
levelMax | The numerical or English word of the maximum logging level (OPTIONAL, defaults to 4 [DEBUG].) |
Examples
Last updated