Pantheios is an open source logging API for C and C++
0
votes
0answers
5 views
Build Error in Pantheios c++ logger on Windows
when I compile the pantheios library, I get the following error :
error C2664: ‘xtests::c::xtests_startRunner’ : cannot convert parameter 1 from ‘con
st pan_char_t [25]‘ to ‘const char *’
Types ...
1
vote
1answer
26 views
pantheios output to log file with limited size
I'm trying to use the pantheios in my C++ project. To be specific, I'm using the stock be.file back-end to output log into a file. I'm wondering how to limit the size of the log file, so it could be ...
0
votes
1answer
38 views
“undefined reference to 'pantheios_log_3_no_test'”
I'm having trouble linking with Pantheios on Linux with gcc4.6 with the following error:
In function `pantheios::internal::log_dispatch_3(int, unsigned int, char const*, unsigned int, char const*, ...
0
votes
0answers
70 views
Using Pantheios with SysLog on Windows to log to Loggly
I'm trying to use Pantheios with the WindowsSyslog back-end (I've never used Syslog before).
I want it to log to Loggly.com.
I wrote this little global class and variable for testing based on the ...
0
votes
0answers
33 views
How to create multiple log files of a maximum length which will wrap ? How to specify which log file messga e will go to? [closed]
I am creating multiple instances of a particular object . I want a log file of maximum length I can send streams to. I want to be able to select the log fie for messages & configure the size of ...
1
vote
1answer
81 views
Cross compile Pantheios for arm
I have tried to cross compile pantheios to arm but no luck. I use the arm-compiler from code sourcery.
I tried changing CC etc in the makefile for gcc46 in pantheios folder. But its says:
"#error ...
0
votes
1answer
83 views
Concurrent writes to log file with pantheios from multiple processes
Anyone knows if pantheios supports concurrent writing to log file from multiple processes . If I start two instances of my program, then nothing is written to the log file. Should I set some parameter ...
1
vote
1answer
162 views
Pantheios in Qt creator with VS C++ 2008 compiler
I can't compile my project that uses Pantheios (version 1.0.1-beta210) logger in Qt Creator (creator 2.5.2 + SDK 4.8.2 compiled from sources with VS2008 compiler) with VS2008 C++ compiler.
But it ...
0
votes
1answer
135 views
How to create log file using pantheios?
My problem is similar what posted in How to log with pantheios to a file? followed the steps but still not able to create log file using pantheios library. It is displaying in theconsole but not ...
0
votes
1answer
46 views
How to change permissions on Pantheios log files
I am using Pantheios as my logging sweet. The process using it is currently owned by root and the log file it creates does not create it with read permissions for all users:
-rwxr-x---, 1 root root ...
0
votes
2answers
57 views
Does pantheios catch segfault?
I'm using the pantheios log library in C++, i didn't find if pantheios can catch a segfault, and then, force to print the buffer data before exiting.
I can catch the segfault, but i didn't found a ...
0
votes
1answer
139 views
Pantheios and boost::thread
I am having some trouble using the pantheios logging library with boost::threads. It seems that if I use any pantheios logging before creating the thread, I will get a segfault.
For example, the ...
0
votes
1answer
251 views
Pantheios set display level in C++
I'm using pantheios library for logging. I have:
pantheios::log(pantheios::debug, "I'm debug");
pantheios::log(pantheios::informational, "Some info");
Which outputs :
[MyApplication, Jun 14 ...
0
votes
0answers
187 views
Undefined reference to `pantheios_init`
I'm trying to use pantheios, I read this tutorial -> http://binglongx.wordpress.com/2010/08/30/pantheios-logging-library-installation-and-use/
The make build and make test are ok, I got a lot of ...
0
votes
1answer
172 views
Pantheios not logging into one file with MFC app comprise (one exe + two DLLs)
I have got an MFC app comprised of one exe and two DLLs. The exe calls fucntions from those two DLLs. Now I am trying to add some logging by using the Pantheios logging lib.
What I want to achieve:
...
0
votes
1answer
153 views
I know pantheios is thread-safe but is it interprocess safe?
I know pantheios is thread-safe & I have used it fine but is it interprocess safe ?
Meaning could different module(differnt exes) logging to the same logging file safely at the same time?
If so ...
0
votes
1answer
448 views
First-chance exception with Pantheios
My app was running fine until I tried to debug it with the Application Verifier. After that I started getting "First-chance exception... : An invalid handle was specified" and the issue seems to be in ...
1
vote
0answers
112 views
Connect Pantheios logging in a DLL to the main application's logging
Here's the situation: I'm working on a MFC application and want to integrate some logging capabilities into it. I did some research and settled on Pantheios since it seems to be regarded as the best ...
0
votes
1answer
287 views
Pantheios Date/Time in log file name
I'm using Pantheios in my application and I'd like to generate a new log file each hour. I've seen the blog entry that explains how to add the date and time ...
1
vote
3answers
489 views
How to avoid multiple definition of PANTHEIOS_FE_PROCESS_IDENTITY?
I'm working on a project with multiple files and I need logging in each of it.
In order to compile a file I need the following:
/* Define the stock front-end process identity, so that it links when ...
2
votes
1answer
241 views
Cpp Pantheios Log Library, Debug Assertion Failed Error
I have a cpp project, a cpp cli project and a c# win forms project.
I use pantheios log library in my cpp native project. When i try to write log, i take this error :
Here is my codes :
Log.hpp
...
1
vote
1answer
160 views
Configuring Pantheios logging library
Is it possible to configure Pantheios logging library from outside
such as from xml or properties file?
0
votes
1answer
57 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?
1
vote
2answers
96 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 ...
6
votes
1answer
2k views
Is Log4cplus really so 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 ...
0
votes
1answer
204 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
569 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 ...
1
vote
1answer
271 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 ...
5
votes
3answers
677 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 ...
1
vote
2answers
244 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?
3
votes
1answer
2k 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 ...
2
votes
4answers
3k 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
0answers
509 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() ...
4
votes
2answers
912 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 ...
5
votes
1answer
490 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 ...
2
votes
1answer
463 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 ...
3
votes
2answers
1k 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 ...