Registering Appenders at Runtime
You can programmatically register appenders at runtime by using the
registerAppender()
function exposed in the LogBox object. Here is the function API:registerAppender(name, class, [properties={},] [layout="",] [levelMin=0,] [levelMax=4]);
Info Please note that registering dynamic appenders at runtime is tricky as some objecs might already have references to some appenders. We recommend registering appenders at configuration load or when the application starts up.
Last modified 1yr ago