atari83 opened a new issue, #198:
URL: https://github.com/apache/logging-log4cxx/issues/198
Hello!
First of all thanks to everybody who contributed to this great project! I
really appreciate that.
So, I have used log4cxx 0.11.0 in my application (running on FreeBSD 13.0
amd64), and just recently updated my application to use log4cxx 1.0.0 (with no
change in my code and config). Everything looks fine which is amazing, however
I noticed when user sends USR1 or USR2 signals or when application is getting
exit there will be always some thread errors appears :
```
__cxa_thread_call_dtors: dtr 0x803f37850 from unloaded dso, skipping
__cxa_thread_call_dtors: dtr 0x803f37850 from unloaded dso, skipping
__cxa_thread_call_dtors: dtr 0x803f37850 from unloaded dso, skipping
__cxa_thread_call_dtors: dtr 0x803f37850 from unloaded dso, skipping
__cxa_thread_call_dtors: dtr 0x803f37850 from unloaded dso, skipping
__cxa_thread_call_dtors: dtr 0x803f37850 from unloaded dso, skipping
__cxa_thread_call_dtors: dtr 0x803f37850 from unloaded dso, skipping
__cxa_thread_call_dtors: dtr 0x803f37850 from unloaded dso, skipping
```
Could anybody help me with this ?
So, my usage from log4cxx is quite basic. I've multithreaded application,
and use several global logger objects for logging information into log files.
```
log4cxx::LoggerPtr _logger(log4cxx::Logger::getLogger("_logger1"));
log4cxx::LoggerPtr _ss_logger(log4cxx::Logger::getLogger("_logger2"));
log4cxx::LoggerPtr _misc_logger(log4cxx::Logger::getLogger("_logger3"));
```
My configuration is stored in a .XML file and have created 3
RollingFileAppender with respective category to let each logger objects in my
code to point to its specified config.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]