tags:

views:

413

answers:

4

What are the C logging API's out there? Some of them I found are

  1. log4c
  2. pantheios
  3. lwl

Is anyone aware of other loggers.

Thanks.

+1  A: 

With log4c you should have one good logging API.

Why do you need more?

A description can be found here.

Burkhard
LoL. yea..thats good enough for throwing a core dump...
Can you be more specific? When do you get a core dump? I don't think that log4c is the reason.
Burkhard
Yes you are correct, I did some digging and found that it was the autoconf and rpl_malloc issue. the rpl_malloc was giving a segfault.I fixed it.But now I need to learn how to use log4c and there is no documentation on how to use it.
Have you read the Log4C-DevelopersGuide.odt?
Burkhard
@Burkhard, I am using log4c for the first time. And I am having a hard time trying to find some documentation. Do you have any link for the developers guide? Thanks.
robUK
I haven't used it in a while: I'd start here (http://log4c.sourceforge.net/) and since it is close to log4j, this (http://jakarta.apache.org/log4j/docs/manual.html) might also help.
Burkhard
+2  A: 

syslog

dmityugov
A: 

glib2 also have good scalable logging api

vitaly.v.ch
Would you care to add the URL?
Jonathan Leffler
http://library.gnome.org/devel/glib/2.18/glib-Message-Logging.html
vitaly.v.ch
A: 

I did some digging and found that it was the autoconf and rpl_malloc issue. the rpl_malloc was giving a segfault. I fixed it.

How did you solve it?

aixproblem