Decent-size refactor pt1
This commit is contained in:
14
README.md
14
README.md
@@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user