Simple VT100 colourised thread safe pretty printer for debug messages
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Tristan B. Velloza Kildaire 061680a452
Update README.md
5 days ago
.github/workflows Create d.yml 5 days ago
branding Branding 4 weeks ago
source/gogga GoggaTransform 4 weeks ago
.gitignore - Updated .gitignore 4 weeks ago
LICENSE Update LICENSE 4 weeks ago
README.md Update README.md 5 days ago
dub.json - Upgraded `dlog` to version `0.3.19` 3 weeks ago
example.png - Added usage 4 weeks ago

README.md


Simple VT100 colourised pretty-printing logger




D

Usage

The API is rather straight-forward, simply create a new logger and then you can use it as such:

import gogga;

GoggaLogger gLogger = new GoggaLogger();

gLogger.info("This is an info message");
gLogger.warn("This is a warning message");
gLogger.error("This is an error message");

This should output something like the following:

Various styles are supported which can be set using mode(GoggaMode).


Or you can also View the full API.