Are the configuration options documented somewhere? I've seen the examples on the quick start page but I'd like more information. Specifically, how do the java (log4j) properties map to the c++ classes?
Take this line as an example: log4j.appender.R.layout=org.apache.log4j.PatternLayout How do you parse this line? I'm guessing that *log4j.appender* equals the log4cxx::Appender class. *R* is an instance and *.layout* somehow invokes Appender::setLayout(), passing it a default instance of log4cxx::PatternLayout. Am I even close? Why do some properties have an org.apache prefix and others do not? Could this line simply be written as R.layout = log4j.PatternLayout ? Can I use log4cxx rather than log4j? Thanks, Cory