gogga/README.md

30 lines
545 B
Markdown
Raw Normal View History

<p align="center">
2023-03-02 10:08:20 +00:00
<img src="branding/logo_banner.png" width=450>
</p>
<br>
<h3 align="center"><i><b>Simple VT100 colourised thread safe pretty-printing logger</i></b></h3>
---
<br>
<br
2023-03-02 11:00:00 +00:00
## Usage
2023-03-02 11:00:00 +00:00
The API is rather straight-forward, simply create a new logger and then you can use it as such:
2023-03-02 11:00:00 +00:00
```d
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:
![](example.png)
2020-10-29 09:17:48 +00:00