Menu

#265 How to create NTEventlogAppender.dll as required for logging

v1.0.4
closed
nobody
None
5
2013-07-14
2011-07-29
Deepak M
No

Hello All,

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 logging enabled by in including following .h

#include <log4cplus/nteventlogappender.h>

And creating the appender as follows:

SharedAppenderPtr append_3(new NTEventLogAppender(LOG4CPLUS_TEXT("127.0.0.1"), LOG4CPLUS_TEXT("log"), LOG4CPLUS_TEXT("source")));
append_3->setName(LOG4CPLUS_TEXT("ToEventlog"));

Logger to_eventlog = Logger::getInstance(LOG4CPLUS_TEXT("to_eventlog"));
to_eventlog.addAppender(append_3);
to_eventlog.setLogLevel(log4cplus::ALL_LOG_LEVEL);

And logging as
Logger to_eventlog = Logger::getInstance(LOG4CPLUS_TEXT("to_eventlog"));
LOG4CPLUS_FATAL(to_eventlog, “Test Message.”);

When I log the message, I get following in the event log:
------------
The description for Event ID 4096 from source source cannot be found. Either the component that raises this event is not installed on your local computer or the installation is corrupted. You can install or repair the component on the local computer.

If the event originated on another computer, the display information had to be saved with the event.

The following information was included with the event:

Test Message.

the message resource is present but the message is not found in the string/message table
------------

I tried to create a dll with name NTEventLogAppender.dll with string table resource and a string with id 4096 (as hardcoded in the nteventlogappender.cxx file in log4cplus) and compiled it with resource only dll (/NOENTRY) but I still keep getting above error.

Any help on how to create this dll would be greatly appreciated.

Discussion

  • Deepak M

    Deepak M - 2011-08-04
    • status: open --> closed
     
  • Václav Haisman

    Václav Haisman - 2013-07-14

    Ticket moved from /p/log4cplus/support-requests/29/

     

Log in to post a comment.