dcreager / clogger

A C logging library based on Python's logbook

Home Page:http://clogger.readthedocs.org/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Overview

Build Status

The clogger library provides a simple, high performance logging framework based on the ideas in the Logbook project.

API documentation can be found here.

Build instructions

To build clogger, you need the following libraries installed on your system:

If you want to build the documentation, you also need:

The clogger library uses CMake as its build manager. In most cases, you should be able to build the source code using the following (from the top level of your copy of the source tree):

$ mkdir .build
$ cd .build
$ cmake .. \
    -DCMAKE_BUILD_TYPE=RelWithDebInfo \
    -DCMAKE_INSTALL_PREFIX=$PREFIX
$ make
$ make test
$ make install

You might have to run the last command using sudo, if you need administrative privileges to write to the $PREFIX directory.

About

A C logging library based on Python's logbook

http://clogger.readthedocs.org/

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:C 55.0%Language:Shell 13.9%Language:Python 11.4%Language:Perl 8.6%Language:M4 6.7%Language:Makefile 4.4%