Tagged Questions
The log4cpp tag has no wiki summary.
8
votes
3answers
3k views
What is the point of clog?
I've been wondering, what is the point of clog? As near as I can tell, clog is the same as cerr but with buffering so it is more efficient. Usually stderr is the same as stdout, so clog is the same as ...
2
votes
3answers
629 views
C++ Logging Library Setup
I've been trying for about 2 weeks now to get a logging library to work with. I've tried Log4cxx, Log4cpp, log4cplus and boost.log. The problem isn't that none of these work for me, it's that I ...
2
votes
2answers
635 views
ETW tracking from .net, user mode and driver
We have an application that parts of it are in .net, c++ usermode and C++ drivers. The application is divided into several executables that run on demand and communication with each other using ...
0
votes
0answers
58 views
SYSLOG with LOG4CPP
I have configured the sysklogd in ubuntu, with the following config
local6.* /var/log/local6.log
In the log4cpp configuration file i am having
log4j.rootCategory = DEBUG, rootAppender
...
0
votes
0answers
92 views
Inheriting appenders in log4cpp
Is it possible to inherit appenders in lg4cpp as well as add new ones further down the hierarchy?
For example:
log4cpp::Category& rootCategory = log4cpp::Category::getRoot();
log4cpp::Appender ...
0
votes
2answers
1k views
getting started with log4cpp in windows
I need to do logging in a c++ application. After googling for a while, I decided to use log4cpp.
is that a safe option to go with, or is there something better out there?
How do get started with ...