From: <log...@li...> - 2015-12-22 16:00:13
|
I see that FileAppender::_fileName is protected. It would be great if there were an accessor: const std::string & FileAppender::getFileName() const { return _fileName; } I have some C++ code that invokes a python script (using popen) and I would like the python script to log to the same file as the calling C++ code. For this, I'd like to walk the appenders, and for any FileAppenders, ask them what their filename is, so I can pass the filename to my python script. Is this reasonable? Is this list the correct forum for asking for such a thing? -John Gregg |