Tagged Questions

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 ...
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
90 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 ...