I'm looking for logging framework for C++ project. My best shot was log4cxx, but it seems that it's abandoned project, with development stopped ~4 years ago, with only one update in last 4-5 years.

Anything better that log4cxx? (log4c & log4cpp are also totally out-of-date)...

link|improve this question

feedback

17 Answers

up vote 14 down vote accepted

Checkout Pantheios. Haven't tried this myself, but have the greatest respect for Matthew Wilson.

link|improve this answer
Pantheios still does not support unicode from what I can tell. Just spent some time evaluating it only to discover I can't use it due to this issue. – Avalanchis Jul 28 '10 at 18:32
The 4th April 2010 release claims full widestring compatibility – dcw Oct 31 '10 at 4:48
2  
@Avalanchis: Out of curiosity, under what circumstances do you need Unicode logging support? – Joseph Garvin Feb 18 '11 at 4:20
13  
@Joseph You are developing in non english language and want native error output? Most of this world is non native english speaking. – RedX Nov 3 '11 at 9:42
feedback

Update : this library has been accepted in Boost under conditions and will be available in a coming release.


Another logging library (by Andrey Semashev ) has been proposed to boost and is currently a work in progress.

From the mailing list :

The archive with the library source code, tests and docs is available in the Vault:

http://tinyurl.com/cm9lum

The online docs are also available on the SourceForge page:

http://boost-log.sourceforge.net

The latest code snapshot can be downloaded from CVS on the SourceForge project page:

http://sourceforge.net/projects/boost-log

The code should be compatible with Boost 1.38. Might also work with 1.37, but I didn't try.

link|improve this answer
Currently it's not building with the intel compiler under linux sourceforge.net/tracker/… – bua Oct 22 '09 at 11:31
Well,it's a work in progress I guess. – Klaim Oct 22 '09 at 20:53
I used this for a project, and was quite pleased with how well it worked, although at times the verbosity was somewhat discouraging. Thankfully there are helper macros and free functions to simplify things, though. – adzm Feb 25 '11 at 12:55
4  
Apparently this library is NOT in boost. It has been withdrawn by the author. – Sardathrion Mar 9 '11 at 10:59
4  
The one I'm pointing is not Boost::Logging by John Torjo (torjo.com/log2/doc/html/index.html) that indeed have been refused and later abandonned by his author (aparently), but Boost::Log by Andrey Semashev that have been accepted in boost but with conditions (lists.boost.org/boost-announce/2010/03/0256.php) and that, from last news, is targeted at the 1.47.0 release (in few months). – Klaim Mar 9 '11 at 11:03
show 4 more comments
feedback

I'm looking also for the same thing. So far I evaluated:

  • log4cplus - nice API, easy build, but memory leaks. The author does not care about the memory leaks and they will not be fixed I guess (see here)
  • log4cpp - nice API, easy build, but memory leaks
  • log4cxx - requires a bunch of apache stuff to get build (really annoyng until you build it) and at the end it has memory leaks... It is also very big
  • glog - so far version 0.3.0 - too early. Looks promesing though, but maybe later. It still has memory leaks, but it is small
  • ezlogger - cool nice small logging library. The only one without memory leaks! Unfortunately there are no features like configuration files, rolling logs e.t.c. Just logging, but works. It consists of several HPP files, so you just include them in your project. No need to build the whole world in order to work (Apache should learn from that!). The code looks nice, it has superb documentation, so anybody can extend it with whatever features in no time

I still want to look at Boost and the Pantheios, but I think ezlogger will be the tool of choice for me. Did I miss some library here? I'd like to make a complete list if possible.

link|improve this answer
8  
It should be pointed out that those memory "leaks" for log4cplus are leaks in name, but not practice. – Steve Feb 24 '10 at 16:23
9  
I consider a memory leak everything that allocates memory and not release it. Calling the operator new in a constructor and having empty corresponding destructor is a memory leak. The fact that the object is instantiated only once (so it leaks once and it is not growing) does not fix the leak. – m_pGladiator Feb 24 '10 at 17:04
2  
Just watch if you use ezlogger's FUNCTRACKER stuff, it is not multithread safe because of the static my_stack member in ezlogger_output_policy::get_stack. Other macros should be safe or at least they don't use that member. I just got rid of it, you will loose the DISPLAYSTACK functions but if you don't need it it should work. – n1ckp Jun 9 '10 at 19:40
1  
Thanks n1ck! I actually have to post an update. Later the Pantheios shown the best performance and it was easy to write a custom backend for using it – m_pGladiator Jun 10 '10 at 14:58
5  
I would agree with @Steve - the allocations you're talking about don't come under the heading 'memory leaks', unless 'memory leak' is defined in a way that misses the point somewhat. In a similar way, the CRT will allocate stuff that you cannot deallocate without exiting the process. Those allocations aren't really memory leaks either. The allocations shouldn't be a 'show-stopper' issue when it comes to deciding whether or not to use the library. – mackenir Aug 5 '11 at 12:34
show 1 more comment
feedback

You can take a look at this article, it discribes a simple, typesafe, threadsafe, portable logging mechanism.

link|improve this answer
1  
+1 I implemented a logging system based on this article and was really happy with it. It's intuitive, flexible, low overhead and easy to use. – markh44 Feb 24 '10 at 16:34
Just tried to follow that link and get a blank page. Found another link at drdobbs.com/article/…. Is that the same article? – jschoen Dec 11 '10 at 22:47
@jschoen Yes, it's the same link. – Serge Dec 15 '10 at 14:00
Any chance to get the zip file to the source code ? the download link on that page is broken ! – ZeroCool Dec 25 '10 at 11:48
1  
@ZeroCool Enjoy: i.cmpnet.com/ddj/images/article/2009/code/logcpp2.zip – bavaza Dec 28 '10 at 18:43
feedback

The Boost Logging framework seem pretty good. I've used it myself on a "toy project" but I haven't really tried it in a large application.

It was however rejected for inclusion in the official Boost library, by the author himself. Thats not because its not a good library, it just didn't fit into the Boost library in its current form.

link|improve this answer
feedback

Here is a log library from google glog

link|improve this answer
feedback

Have a look at the logging library which has been proposed for the Boost C++ libraries.

See: http://torjo.com/log2/doc/html/index.html

link|improve this answer
feedback

I don't think that log4ccxx is abandoned at all. I am actually using the last release of log4cxx in my current project and it works pretty well. Yo can check it here

link|improve this answer
1  
that link just confirms my state: "only one update in last 4-5 years" – Jox Apr 1 '09 at 7:32
3  
I think it has just reached a level of stability - there really isn't anything more to add. – Martin Beckett Jul 24 '09 at 15:28
1  
I think log4cxx tries to follow the lo4java design. Log4java has a 1.3 branch abandoned and another branch 2.0 that is still experimental. Version 1.2 of log4java has been there for while so I guess that without new versions of log4java there won't be new log4cxx – fco.javier.sanz Jul 24 '09 at 18:43
feedback

log4cplus - nice API, easy build, but memory leaks. The author does not care about the memory leaks and they will not be fixed I guess (see here)

What you consider leaks are not leaks. The memory gets destroyed and freed properly, as far as I know, at static variables destruction time. IMHO your leak detector is showing false positives here. If your leak detector has any sort for textual output, please share it, attach it to the bug report.

link|improve this answer
feedback

Pantheios is great, but no unicode/wchar_t support. Ditto for google-glog. One advantage of google-glog is that if you use gflags for options parsing, it builds upon it so that debug flags are automatically available for your program. But no wchar_t support is bad.

log4cxx requires apache portable runtime.

log4cplus is kinda primitive.

Boost.Log by Andrey Semashev really looks good. I am going to try it out and see how it goes.

I am just hoping that I don't have to end up rolling my own..

link|improve this answer
Any updates on how Boost.Log worked for you? – Avalanchis Jul 28 '10 at 18:33
April 2010 release claims full widestring compatibility. – dcw Oct 31 '10 at 4:48
feedback

You may wish to consider the logog library. The documentation can be accessed here:

http://www.logog.org

logog has basic multibyte character support, a no-memory-leak policy, a BSD-style license, runs on Windows and POSIX like systems, it's safe in a multithreaded environment, has very complete documentation, supports Unicode output, and maintains a test framework. Additionally, there are no external dependencies in logog beyond that which most modern compilers already provide -- it doesn't need Boost or STLSoft, for example.

link|improve this answer
This looks like a little gem. Looking forward to giving it a try. – alexr Oct 19 '11 at 8:56
Boost.Log seems heavy weight. I like logog. – SunLiWei Feb 27 at 3:54
feedback

This one is another option: http://clp.sourceforge.net/, works for me

link|improve this answer
feedback

http://log4cpp.sourceforge.net/ though LGPLed

link|improve this answer
So what's wrong with LGPL? Can't you use it in commercial code? – User1 Feb 4 '11 at 20:24
feedback

I've used NLog in our native C++ projects. Its primarily a .NET logging framework but it does offer a COM interop out of the box (which admittedly doesn't offer full functionality but the source code is available so you can grab the source and roll your own COM interop exposing the functionality that you need).

link|improve this answer
the N in NLog is for .Net, not for Native, although it can be used by C++, it still requires .NET at runtime – 赵如飞 May 7 '11 at 14:17
feedback

I don't see why few updates to log4cxx are a bad thing, necessarily. It's working great in my project.

link|improve this answer
1  
Of course it's not necessarily a bad thing. Thing is we want to use out-of-the box tested logging framework, and log4cxx doesn't even compile in VS2k8 easily. – Jox May 15 '09 at 6:07
2  
Ditto here-- it'd be pretty suite if log4cxx build on many newer compilers without requiring goofy, smack-yourself-in-the-forehead patches. – Rhys Ulerich Dec 17 '09 at 17:27
3  
As well it can segfault in multithreaded apps (issues.apache.org/jira/browse/LOGCXX-322). This problem has been on the books for a year, with no fix. – rbellamy Mar 19 '10 at 17:37
feedback

Nobody has yet mentioned rlog. I'm not sure how thread safe it is. And there is a lot of ugly macro hackery. But it is very fast to have a logging point that is disabled, and it is pretty flexible in choosing what gets logged at runtime.

link|improve this answer
rlog looks quite interesting. Have you succeeded in logging to a file with it? – Burkhard Mar 29 at 14:32
@Burkhard: I have. But after looking at rlog and trying it out, I've become disenchanted with it. Unfortunately, I can't remember why. :-/ – Omnifarious Mar 30 at 14:29
feedback

I've been using log4cplus for some time. Portable and stable.

link|improve this answer
feedback

protected by Mat Aug 20 '11 at 8:24

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.