Reputation: 107
I used log4cxx as the log module in my C++ project. Now I want to manage my debug logs more properly. A possible approach is to use Apache Kafka. I know it is ok to use Kafka in a Java project where log4j is adopted. But when it comes to log4cxx, what is the solution, please?
Upvotes: 1
Views: 569
Reputation: 2167
Perhaps will help you: Integrating log4cxx and kafka and see the code of the klogd.
Unfortunately log4cxx has no Kafka appender like it is already done for Log4j2.
Maybe you may write you own dedicated appender for log4cxx based on what is made in Kafka appender for Log4j2 KafkaAppender.
Upvotes: 1