Hi, currently writing my first appender, and wondering about the following:
The Appender interface specifies a method for logging a single event. However, my custom Appender would greatly benefit in terms of performance, if I could implement an additional method append(LogEvent[] events). Now, I wonder if such batching has been omitted from the API intentionally. Or, alternatively, if I might replace my custom logger with a modified instance of AsyncAppender? Thanks, Jochen