/teelogging

simple logging simultaneous to file and screen using basic macros LOGI, LOGD, LOGV, LOGW, LOG and LOGF

Primary LanguageC++MIT LicenseMIT

teelogging npm version

logging to file and screen using basic macros LOGI, LOGD, LOGV, LOGW, LOG and LOGF

Coverage: codecov

gcc 4.9 / clang 3.6: Build Status

MSVC 2015: Build status

basic use

#include <teelogging/teelogging.h>

...
{
  LOGI("info level");
  int n = 10;
  LOGE("error %d with printf style", n);
}
´´´