Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/soundofdarkness/simplelogging
- Owner: Soundofdarkness
- License: mit
- Created: 2018-03-17T17:04:54.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-03-18T22:23:00.000Z (almost 7 years ago)
- Last Synced: 2024-11-05T12:12:34.828Z (about 2 months ago)
- Topics: logging, nim-lang
- Language: Nim
- Size: 11.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
- License: LICENSE
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