Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/soundofdarkness/simplelogging

Simple Logging for Nim
https://github.com/soundofdarkness/simplelogging

logging nim-lang

Last synced: 1 day ago
JSON representation

Simple Logging for Nim

Awesome Lists containing this project

README

        

## Simple Logging

Just another simple logging library for nim.

Example Use:

```nim
import simplelogging

# Normal logging method
log(DEBUG, "Debug test");
log(INFO, "Info test");
log(WARN, "Warn test");
log(ERROR, "Error test");

# Shortcut methods
debug("Test");
info("Test");
warn("Test");
error("Test");

```

Result:

![Example](/images/example.png)

Author: Laura Schäfer
License: MIT