Tagged Questions

Apache log4cxx is a logging framework for C++ patterned after Apache log4j. See http://logging.apache.org/log4cxx/ for details.

learn more… | top users | synonyms

5
votes
2answers
478 views

Logging and filtering using log4cxx

I am working on the application where I need logging and filtering feature. I am using c++. I came to know about the log4cxx support logging. I am getting difficulty in filtering . I have five ...
5
votes
2answers
818 views

mixing log4cxx and log4net

I have a c++ application which logs to some file using log4cxx (RollingFile appender). I want to log into the same file, at the same time, from another module written in c#; so i configured log4net to ...
4
votes
2answers
210 views

How to overload the ostream operator << to make it work with log4cxx in C++?

Say I have a class A and an operator<< declared like so: // A.h class A { // A stuff }; std::ostream& operator<<(std::ostream& os, const A& a); somewhere else I use my ...
3
votes
1answer
94 views

What log4net pattern provides for filename without the full path

My log4net conversion pattern looks like this <conversionPattern value="%5level [%thread] (%file:%line) - %message%newline" /> The %file spits out the full path covering almost one full line ...
2
votes
1answer
207 views

Log4cxx and full file paths when used with CMake

I'm using Log4Cxx for logging and I'd like to use the %l directive in order to see where is the log trace (filename and line number). The problem I have is that I'm also using CMake that provides full ...
2
votes
3answers
628 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 ...
2
votes
3answers
271 views

log4c documenation

gcc 4.4.3 c89 I am just getting started with log4c. However, there is very little documentation out there for how to get started with it. I am wondering does anyone know of any tutorials, articles ...
2
votes
2answers
124 views

Managing logs/warnings in Python extensions

TL;DR version: What do you use for configurable (and preferably captured) logging inside your C++ bits in a Python project? Details follow. Say you have a a few compiled .so modules that may need to ...
1
vote
1answer
44 views

Log to different file with log4cxx

I want to log to different files in my code. How can i do that in Log4cxx with xml configuration or programatically in code... Suppose that I have 1.k,k+1,..n components. They run in the same ...
1
vote
0answers
51 views

Log4cxx multiple output

I have log4cxx implementation in utility.dll. This dll is used by application1.dll and application2.dll Application1 defines log file name as "c:\application1\applog.log"; Application2 defines log ...
1
vote
0answers
55 views

building log4cxx in vs 2010 c++

Gentlemen, this driving me crazy, I'm trying to building the log4cxx library in order to use in a c++ project I've been using. I'm on a win7 host running VS2010 express c++ edition. I've followed the ...
1
vote
1answer
19 views

Which conversion pattern specifier would give me 2 digit dates in log4cxx?

I am trying to use: <layout class="PatternLayout"> <param name="ConversionPattern" value="%d{MM/dd/yy-HH:mm:ss}-t@%t-Inf-%m%n" /> </layout> but I am still getting ...
1
vote
1answer
68 views

Rolling logs every 30 minutes

I'm using log4cxx and with the following configuration, I understand I can roll a log every hour, minute, day and so on. <rollingPolicy ...
1
vote
0answers
30 views

Plausible to replace thread implementation in Log4cxx with custom threads like pthreads?

Log4cxx is a huge open source logging library. It makes extensive use of apache portable runtime and I was wondering if there is any easy way (not requiring full rewriting) for getting rid of apache ...
1
vote
1answer
94 views

Using Log4j CompositeTriggeringPolicy feature with log4CXX

I would like to combine both rolling time and rolling size in an appender, it seems there is no composite rolling in log4cxx, am I right ?
1
vote
1answer
220 views

log4cxx config file syntax

I'm just discovering log4cxx logging framework. It seems there are two different syntaxes for writing config file: xml manner key-value manner Is there a difference or a best practice in this two ...
1
vote
1answer
375 views

Using log4cxx with Visual Studio 2010. Application initialization error

I have succeeded to build the log4cxx library both in debug and release mode and created log4cxxd.lib and log4cxx.lib files. But when I try to use them with static linking in my visual C++ 2010 ...
1
vote
0answers
112 views

log4cxx is throwing exception on ~Logger

I just started with log4cxx by doing a small app to get familiar with it. I compiled with Visual Studio 2005, no warnings or errors. Basically looks like : #includes<...> ... ... LoggerPtr ...
1
vote
1answer
89 views

Need help creating log4cxx appender using Eclipse in Ubuntu

When attempting to inherit from AppenderSkeleton I get "error: expected class-name before ‘{’ token " when I attempt to compile. I seems to not be recognizing the class but I am referencing the ...
1
vote
1answer
109 views

Log4cxx macro is not working with string contain null character

I am working on client server application.we have protocol format to send and query data from Server. Now I need to log the data coming from or to server on the log file. I am using latest version of ...
1
vote
0answers
125 views

Log4Cxx sql server appender

Is it possible, when using Log4Cxx, to write the logs to MS SQL server? I have been Googling for a while and have found a few examples that use the ODBCAppender. E.G.: <appender ...
1
vote
1answer
344 views

log4cxx: configuring appender with arguments

log4cxx's config is read from follow-by xml via: DOMConfigurator::configure("log4cxx.xml"); But, want to have filename set at runtime, and this creates a problem of either having multiple .xmls for ...
1
vote
1answer
220 views

How to turn off logging in log4c, which is the configuration parameter used in xml file

I am using log4c library with xml configuration log4crc and I need to figure out how to turn off/on logging. I could not find any document explaining the parameters in log4crc configuration file,
1
vote
2answers
605 views

How to log Process id using Log4cxx or log4j

I am using log4cxx my project and i can able to log current thread id using [%t] marker, how to log process id?. I am using ConversionPattern & xml based configuration file. Thanks,
1
vote
6answers
1k views

C++ inline String formatting and numeric conversion

C# has a nice static method String.Format(string, params string[]); that returns a new string with the formatting and values that are provided. Is there an equivalent in C++? The reason is ...
1
vote
1answer
481 views

log4cxx time based rolling on Windows

Has anyone had any success getting log4cxx to roll files based upon time on Windows? It seems from the unit test cases and the behavior I can observe that this does not work at all on win32 ...
1
vote
2answers
1k views

Log4cxx custom appender

Is it possible to write a custom appender for log4cxx and have it configurable via a properties file (like the built-in appenders)? I'd prefer doing this without having to rebuild log4cxx (e.g. by ...
0
votes
0answers
4 views

Log to custom event source with Log4cxx

I can able to log windows event using NTEventLogAppender appander with following properties: # Set root logger level to DEBUG and its only appender to EVENTLOG. log4j.rootLogger=DEBUG, EVENTLOG # ...
0
votes
2answers
25 views

Logging to windows event using Log4cxx

How can i send log messages to windows event log using Log4cxx? If i do it from multiple process , will it be process safe? Well: Thanks Retired Ninja...Yes it works...[ log4j.properties file] # ...
0
votes
1answer
54 views

Process safe logging library for c++

Is there any process safe logging library which can write same file from multiple process for C++? I tried log4cxx. Some advices to use SocketConnector to write same file. But i did not find any real ...
0
votes
1answer
100 views

Log4cpp compile error

I have the following code which is failing to compile. #include <stdio.h> #include <log4cpp/Category.hh> #include <log4cpp/FileAppender.hh> #include <log4cpp/SimpleLayout.hh> ...
0
votes
1answer
20 views

Is it possible to decouple the location of the active vs. archived log files with apache log4cxx?

Also, is it possible to configure a size based rolling file appender to do auto compression like a rolling file appender? Thanks
0
votes
1answer
154 views

compile errors log4cxx with __stdcall and Boost 1.47.0

I'll be very pleased if you help. My IDE is VS2010. I'm using boost 1.47.0, especially boost::asio. After some days of developing I decided to add log4cxx. log4cxx needs to change calling ...
0
votes
0answers
48 views

Looking for some guidance on implementing a encrypted version of log4cxx using cryptopp

In a nutshell, we employ log4cxx in our application as our central logging facility, however, for security purposes we require that in deployed(released) systems all logging output generated by the ...
0
votes
0answers
82 views

Run time exception in log4cxx

I downloaded the log4cxx project and built it (successfully) then generated dll. I want to use in my application for logging purposes. I made an XML file. My application built successfully but ...
0
votes
1answer
52 views

How to log to application log and security log from the same application

I have an application that needs to log "application log messages" to an appender and "security log messages" to another appender (security log messages cannot appear in the application log). I was ...
0
votes
1answer
343 views

Reading Property Info in Log4cxx

I am using log4cxx for writing to the log. This is my configuration for logging, Here i have log file size of of 4 MB. after that it will rewrite it self.I am able to log using following config file ...
0
votes
1answer
78 views

Using log4cxx as input counter

I want to add a counter that record how many data input per hour or per day. Since there is no timer in my code, I hope that log4cxx, which can handle daily log rotation, could help me. Like, every ...
0
votes
1answer
132 views

How to keep single file and overwrite the contents in the same file using log4cxx?

In my application , Multiple threads log the data in the same file .if the file size exceeds the limit , then i have to delete the particular record in file and move every contents upwards. can I do ...
0
votes
1answer
209 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
0answers
16 views

forward KDE debug messages to log4cxx

how could i capture the debug message from KDE and forward the message into the log4cxx system?
0
votes
1answer
200 views

I am getting error in c++ programm while using log4cxx

I am getting error in c++ program while using log4cxx. The error message is: error:Please initialize the log4cxx system properly Please help to resolve, Thanks in advance.
0
votes
2answers
85 views

LGPL/public-domain equivalent of Apache log4cxx?

Is there an equivalent of Apache log4cxx that can be embedded in a distributed proprietary package?
0
votes
1answer
276 views

What are the benefits of using log4cxx over plain syslog()?

I've had log4cxx recommended to me as a good way of generating log messages from C++ applications. However, plain old UNIX syslog() calls do let me output to files, or over the network, and have all ...
0
votes
1answer
316 views

static linking log4c-1.2.1 with Fedora 12 and Eclipse 3.5.1

We are building a project that requires log4c to be linked in the static mode, the following is part of the linker error that is being generated. /usr/local/lib/liblog4c.a(domnode-expat.o): In ...
0
votes
1answer
452 views

Variable lenght arguments in log4cxx LOG4CXX_ macros

I am using log4cxx in a big C++ project but I really don't like how log4cxx handles multiple variables when logging: LOG4CXX_DEBUG(logger, "test " << var1 << " and " << var3 " and ...
0
votes
1answer
382 views

log4j/log4cxx : exclusive 1 to 1 relation between logger and appender

Using the xml configuration of log4cxx (which is identical in configuration to log4j). I want to have a certain logger output exclusively to a specific appender (have it the only logger which outputs ...
0
votes
2answers
473 views

Building log4cxx on visual 2005

When I build the log4cxx on Visual 2005 according to instructions http://logging.apache.org/log4cxx/building/vstudio.html, I am getting error below; 1>------ Build started: Project: apr, ...