Decent-size refactor pt1

This commit is contained in:
2024-08-12 23:21:33 -04:00
parent 1ae346304e
commit 96b759d54e
13 changed files with 241 additions and 265 deletions

View File

@@ -38,14 +38,14 @@ Using jlog is straightforward:
#include <jlog.h>
int main() {
LOGLEVEL(jlog::severity::debug); // <- see jlog::severity for full list of Log levels
LOGLEVEL(jlog::severity::debug); // <- see jlog::severity for full list of LogTrace levels
INFO("This is barely useful information.");
DEBUG("Debugging Information");
VERBOSE("Yadda Yadda Yadda");
WARNING("Slight miscalculation!");
ERROR("Oops, something went wrong.");
FATAL("Unrecoverable Error!!!");
info("This is barely useful information.");
debug("Debugging Information");
verbose("Yadda Yadda Yadda");
warning("Slight miscalculation!");
error("Oops, something went wrong.");
fatal("Unrecoverable Error!!!");
return 0;
}