https://github.com/soundofdarkness/simplelogging
Simple Logging for Nim
https://github.com/soundofdarkness/simplelogging
logging nim-lang
Last synced: 3 months 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 (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-03-18T22:23:00.000Z (over 7 years ago)
- Last Synced: 2025-02-14T22:25:28.324Z (5 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:

Author: Laura Schäfer
License: MIT