DavidS
DavidS

Reputation: 2294

Is it possible using log4cplus in C code?

I have searched the web and log4cplus documentation for the question on how to use the log4cplus library in a pure C code and haven't found a clear answer. Is it possible?

Upvotes: 2

Views: 406

Answers (1)

wilx
wilx

Reputation: 18248

log4cplus has limited C API since log4cplus 1.1.0-RC1. Branches 1.1.x and 1.2.x have the same API. Master, which will eventually become 2.0.x, has slightly modified and extended C API. In either case, they support printf-style formatted output. See clogger.h on 1.1.x branch or look at the same file on master, depending on which version of the library you are using.

The intention of this API is to provide logging support for applications with mixed C and C++ code. Its intention is not to provide 1:1 translation to C for the whole log4cplus.

Upvotes: 5

Related Questions