Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
268 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 ...
3
votes
2answers
277 views

viability of c++ logging library for asynchronous capturing of high throughput data?

I am working with a real time system written in C++. We are looking to use either boost or pantheios for logging. The system has some standard logging requirements which I'm confident can be met by ...
3
votes
1answer
667 views

Beginner: How to use the Pantheios logging API library as a replacement for #ifdef DEBUG? How to def SEVLEVEL?

i want to log a lot of events in a dynamically search-algorithm (e.g. information about convergence to global optimum). This logging should have a switch to turn it off/on. Now there are a lot of ...
3
votes
2answers
424 views

How to include the calling class and line number in the log using Pantheios?

I just started using Pantheios and it feels really like a great library for logging! Maybe even the greatest one for C++! Congratulations to the author! However, I could not find neither in the ...
3
votes
0answers
334 views

How to create a fixed back-end DLL for Pantheios logger

I have a VS 2005 solution that has numerous projects (most are DLL, 1 EXE which is a CppUnit project) and I am trying to add a fixed back-end DLL for the Pantheios logger so that I can use a single ...
3
votes
2answers
804 views

Use Pantheios logging framework from a dll

Im a trying to use pantheios logging framework from inside a c++ dll. I have successfully built the dll and it executes through my test application (C++ MFC Application). I have used implicit ...
2
votes
1answer
245 views

Custom front end and back end with Pantheios logging

Apologies if I'm missing something really obvious, but I'm trying to understand how to write a custom front end and back end with Pantheios. (I'm using it from C++, not C.) I can follow the purposes ...
1
vote
2answers
36 views

How to deny creating empty log file with be.file in Pantheios?

1)be.file backend has a feature - messages added before _be_file_set_filename() are not lost and will be appended to log later. 2)_be_file_set_filename opens file immediately => if no entries was ...
1
vote
1answer
123 views

Pantheios wide characters?

I'm trying to integrate logging into my Windows C++ application, and I wanted to use Pantheios, as it generally has very favorable comments. That said, all the examples included are using macros like ...
1
vote
2answers
164 views

How to make use of existing operator<< overloads when logging with Pantheios?

If have a ton of user defined types which implement operator<< to write to an std::ostream. How can I uses these when logging my types with Pantheios?
1
vote
3answers
1k views

How to log with pantheios to a file?

I tried the exemple from pantheios to log to a file but can't manage to make it work. Messages are correctly displayed in the console but the log file isn't created. I tried to change severity levels ...
0
votes
1answer
6 views

Logging to windows event using Pantheios logging library

How can i send log messages to windows event log using Pantheios? and If i do it from multiple process using Pantheious , will it be process safe? Will i get craches?
0
votes
1answer
76 views

Having different configurations on Pantheios

This question is regarding logging in C++ with Pantheios library. In my application, I need to have these different loggers: One that logs the critical messages to logFile1 and to Console One ...
0
votes
2answers
104 views

Build Error in Pantheios c++ logger in Windows 7

When I am trying to build pantheios 1.0.1-beta it gives "makefile:17: * missing separator. Stop." as the error. I have followed the given installation instructions correctly. All the environment ...
0
votes
0answers
320 views

Problem using pantheios file stock back end

I am trying to use pantheios file stock back end to log from my dll in c++. The file gets created but nothing gets written to the file. Here is a snippet of my code if (pantheios::pantheios_init() ...
-1
votes
0answers
26 views

Using multiplexing in pantheios but want to give the user the option to stop output going to one of the backends at runtime

I am using the files pantheios/frontends/fe.N.h and pantheios/backends/be.N.h to allow output to go to multiple backends. Right now I have what I originally intended on which was to output to both the ...