Skip to content

Lightweight c++17/c++11 single-header logging solution

License

Notifications You must be signed in to change notification settings

vadzz-dev/alt-log

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

alt-log

Usage:

#include "alt-log.h"

using namespace alt;

int main()
{
  Log::Push(new Log::ConsoleStream);

  Log::Info << "Hello" << Log::Blue << " world" << Log::Endl;
  Log::Warning("Hello", "again");

  return 0;
}
$ g++ -o main main.cpp -std=c++17 && ./main
[19:36:23] Hello world
[19:36:23][Warning] Hello again

About

Lightweight c++17/c++11 single-header logging solution

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages