Skip to content

A light and header-only logging library for debug propose based on C++17.

Notifications You must be signed in to change notification settings

Eastern-Hogwarts/nanologging

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

NanoLogging

A light and header-only logging library for debug propose based on C++17.

Usage

#include "nanologging\nanologging.h"

int main() {
  LOG_INFO("This is LOG_INFO with value ", 123);
  LOG_WARN("This is LOG_WARN with value ", 0.01);
  // LOG_ERROR("This is LOG_ERROR with value ", 'c', " and throw");

  CHECK_EQ(1, 1);
  // CHECK_EQ(1, 2);

  return 0;
}

About

A light and header-only logging library for debug propose based on C++17.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages