I've seen tons of materials on how to use AsyncAppender in log4j.xml. However, I can't use a xml configuration, as I'm using Jboss Fuse - and this technology only allows .properties configuration.
Is there a way to translate the following configuration to .properties?
<appender name="async" class="org.apache.log4j.AsyncAppender">
<param name="BufferSize" value="500"/>
<appender-ref ref="console"/>
</appender>
I'd imagine that a solution looks somewhat like that:
log4j.appender.async=org.apache.log4j.AsyncAppender
log4j.appender.async.appenders=console