The log4cplus tag has no wiki summary.
5
votes
1answer
343 views
Is Log4cplus really this slow?
I've been testing three options for my logging subsystem in C++. One is Log4cplus, one is Pantheios and the last one is a simple logging library that we have written ourselves.
Log4cplus has been ...
2
votes
3answers
690 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 ...
1
vote
1answer
360 views
How to retrieve log entries using log4cplus?
log4cplus is powerful, but I don't know how to retrieve log entries with it? Are there any features? Any APIs or things like that provided by log4cplus? Thanks in advance.
1
vote
2answers
497 views
Include static external library in QT4 application
Newish C++ programmer here. I am creating a QT4 application and it's gotten large enough to where I want to start using log4cplus. I think I'm close but qmake is still not cooperating.
I am running ...
1
vote
2answers
305 views
SDL does not show its window if I use a logging library
I'm trying to use log4cplus in conjunction with SDL to make a little graphic application.
I'm using minGW and Eclipse CDT on windows.
My problem is that whenever I use the library, my SDL window is ...
1
vote
7answers
1k views
C++ Project compiles as static lib, fails (linker error) as dynamic lib. why?
I've a VS2008 native C++ project, that I wish to compile as a DLL.
It only references one external library (log4cplus.lib), and uses its functions.
(also uses log4cplus's .h files , naturally).
When ...
0
votes
0answers
32 views
log4cplus implementation of FallbackErrorHandler
I am new to log4cplus API. need to use the logging mechanism of my project. I have chosen log4cplus for that. One of the requirement is to fall back to different log file or appender if there is any ...
0
votes
1answer
251 views
How to create NTEventlogAppender.dll as required for logging event in the eventlog using log4cplus
First, Let me thank for the log4cplus source code.
I am facing one issue as follows:
What I am trying to do?
I want to log the messages to event log on windows.
What did I do?
I could get the event ...
0
votes
1answer
220 views
Cannot open include file: 'log4cxx\logger.h': No such file or directory
Is there any API for log4cxx?if so specify the location to download?
Thanks
0
votes
1answer
1k views
Help configuring the log4cplus configuration file (properties file)
I created a new Logger object like this:
log4cplus::Logger m_WebAccessLogger; //a class member
Then in the constructor initialization list I do:
...