Thanks, I think this is relevant to my problem. When you say "proper
appender for my dll logs", are you indicating that there is somehow a
special appender for shared library logs? Or just that I need to have
some appender for them? In my executable, I've got something to the
effect of:
manipulate_logs("*").add_appender(write_to_cout);
This is working for the logs messages from the executable, but not
from the shared libs. Is there something else I need to do?
Austin
On 8/17/05, Oliver Schoenborn
I have some dll's that have their own logs (each dll has a distinct namespace), they can be enabled/disabled with enable_log()/disable_log(). The main program has yet another set of logs. Just make sure that you have the proper appender for your dll logs. Sorry if this is not relevant to your problem. Oliver