Giter Club home page Giter Club logo

bmagistro / g3log Goto Github PK

View Code? Open in Web Editor NEW

This project forked from kjellkod/g3log

0.0 2.0 0.0 4.57 MB

G3log is an asynchronous, "crash safe", logger that is easy to use with default logging sinks or you can add your own. G3log is made with plain C++11 with no external libraries (except gtest used for unit tests). G3log is made to be cross-platform, currently running on OSX, Windows and several Linux distros. See Readme below for details of usage.

Home Page: http://github.com/KjellKod/g3log

License: The Unlicense

CMake 14.88% C++ 84.77% Shell 0.35%

g3log's Introduction

introduction | detailed information | Configure & Build | API description | Custom log formatting

Welcome to g3log

Use kjellkod.github.io/g3log/ for best reading / searching / navigating of g3log's documentation.

G3log is an asynchronous logger with three main features:

  1. Intuitive LOG(...) API
  2. Design-by-contract CHECK(...) functionality
  3. Fatal crash handling for graceful shutdown of the logged process without loosing any log details up to the point of the crash.

The super quick introduction to g3log can be seen in the steps 1 - 9 below.

For more in-depth information please see the full usage description in g3log.md. The internal API for more advanced integration with g3log can be accessed in API.md

1. Easy usage in files

Avoid deep dependency injection complexity and instead get access to the logger as easy as

#include <g3log/g3log.hpp>

2. Access to streaming and print_f log call syntax

Both streaming syntax LOG and print_f LOGF syntax are available.

LOGF(INFO, "Hi log %d", 123);
LOG(INF) << "Hi log " << 123;

3. Conditional logging

LOG_IF(INFO, (1 < 2)) << "If true this message will be logged";
LOGF_IF(INFO, (1 < 2), "If true, then this %s will be logged", "message");

4. Design-by-contract framework

CHECK(less != more); // not fatal
CHECK_F(less > more, "CHECK(false) will trigger a fatal message")

5. Handling of fatal

By default g3log will capture fatal events such as LOG(FATAL), CHECK(false) and otherwise fatal signals such as:

    SIGABRT
    SIGFPE
    SIGILL
    SIGSEGV
    SIGTERM

When a fatal event happens the not-yet written log activity will be flushed to the logging sinks. Only when all logging activity up to the point of the fatal event has happend, will g3log allow the fatal event to proceed and exit the process.

If object symbols are available the fatal handler will attempt to push the stacktrace up to the fatal reason to the logging sink.

5b. Overriding and customization of fatal event handling

For overriding fatal error handling to use your own, or to add code hooks that you want to execute please see the API.md doc.

6. Default and Custom logging levels

The default logging levels are DEBUG, INFO, WARNING and FATAL. You can define your own logging levels or completely replace the logging levels. Ref: API.md

7. Log filtering

Log filtering is handled in g3log if dynamic logging levels are enabled in the configuration. See the API.md for information. Log filtering can also be handled through the sink as can be seen in github/Kjellod/g3sinks

8. 3rd party and custom logging sinks

The default logging sink has no external 3rd party dependencies. For more logging sinks please see github/Kjellod/g3sinks

  • log rotate
  • log to syslog
  • log to colored terminal output
  • log rotate with filter

See the API.md for more information about the simple steps to creating your own logging sink.

9. Log instantiation

With the default application name left as is (i.e. "g3log") a creation of the logger could look something like this:

  const std::string directory = "./";
  const std::string name = "TestLogFile";
  auto worker = g3::LogWorker::createLogWorker();
  auto handle = worker->addDefaultLogger(name, directory);

The resulting filename would be something like:

   ./TestLogFile.g3log.20160217-001406.log

G3log aims to keep all background logging to sinks with as little log overhead as possible to the logging sink and with as small "worst case latency" as possible. For this reason g3log is a good logger for many systems that deal with critical tasks. Depending on platform the average logging overhead will differ. On my 2010 laptop the average call, when doing extreme performance testing, will be about ~2 us.

The worst case latency is kept stable with no extreme peaks, in spite of any sudden extreme pressure. I have a blog post regarding comparing worst case latency for g3log and other loggers which might be of interest. You can find it here: https://kjellkod.wordpress.com/2015/06/30/the-worlds-fastest-logger-vs-g3log/

The g3log repository is evaluating both github actions and CircleCI for executing test coverage, installation and document generation. For windows the repo is still relying on appveyor. In case you want to look into change any of these setups the following files are the ones of interest.

1. appveyor --> g3log/appveyor.yml
2. circleCI --> g3log/.circleci/config.yml
3. github actions --> g3log/.github/workflows/*.yml


If you like this logger (or not) it would be nice with some feedback. That way I can improve g3log and it is always nice to hear when and how someone is using it.

If you have ANY questions or problems please do not hesitate in contacting me at Hedstrom @ Kjellod. cc

This logger is available for free and all of its source code is public domain. A great way of saying thanks is to send a donation. It would go a long way not only to show your support but also to boost continued development.

Donate

  • $5 for a cup of coffee
  • $25 for a late evening coding with takeout

Cheers

Kjell (a.k.a. KjellKod)

introduction | detailed information | Configure & Build | API description | Custom log formatting

g3log's People

Contributors

andreasschoenle avatar ctapmex avatar kjellkod avatar jkhoogland avatar mobileben avatar cstamatopoulos avatar pshurgal avatar shiyuge avatar myd7349 avatar rickyzhang82 avatar alexandreptj avatar alvin-777 avatar mkilivan avatar peasantcodefarmer avatar bmagistro avatar maj-tom avatar ttencate avatar tkhyn avatar hoditohod avatar shachar avatar dasmysh avatar sradigan avatar ripopov avatar rayrapetyan avatar skiddytoast avatar madscientist avatar nitaym avatar ngladitz avatar xiaotianrandom avatar turenar avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.