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 linking with the following includes:
#include <pantheios/implicit_link/core.h>
#include <pantheios/implicit_link/fe.simple.h>
#include <pantheio...
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 of the initialisation functions (I think) but I'm unsure about the others: pantheios_be_logEntry, pantheios_fe_getProcessIdentity and panth...
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 logger instance throughout the solution. Following the directions from the below URLs:
http://stackoverflow.com/questions/1460185/use-panth...
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 documentation nor in all the forum posts anything about how to include the calling class and the line number in the log.
I'm using be.file as b...
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() < 0)
{
MessageBox(NULL, "Init Failed", "fvm", MB_OK);
}else {
MessageBox(NULL, "Init Passed", "fvm", MB_OK);
pantheios::log_IN...