Skip to content

Instantly share code, notes, and snippets.

View Vivian-A's full-sized avatar
🏳️‍🌈

Vivian Vivian-A

🏳️‍🌈
View GitHub Profile
@Vivian-A
Vivian-A / lumberjack.h
Last active March 24, 2025 01:38
Really lightweight, header only, console, C++ logger
#ifndef LUMBERJACK_H
#define LUMBERJACK_H
#include <iostream>
#include <sstream>
#include <mutex>
#include <string>
#include <ctime>
#include <iomanip>