https://github.com/jdiscordbots/nightdream-logging
logging API for NightDream
https://github.com/jdiscordbots/nightdream-logging
java java-8 java8 log logger logging logging-library maven maven-central mavencentral
Last synced: 5 months ago
JSON representation
logging API for NightDream
- Host: GitHub
- URL: https://github.com/jdiscordbots/nightdream-logging
- Owner: JDiscordBots
- License: bsl-1.0
- Created: 2019-09-06T15:13:33.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2022-09-18T20:10:01.000Z (over 3 years ago)
- Last Synced: 2025-01-29T13:29:15.525Z (over 1 year ago)
- Topics: java, java-8, java8, log, logger, logging, logging-library, maven, maven-central, mavencentral
- Language: Java
- Size: 83 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.MD
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Codeowners: .github/CODEOWNERS
- Security: .github/SECURITY.md
Awesome Lists containing this project
README
# NightDream Logging
[](https://travis-ci.com/JDiscordBots/NightDream-Logging)
[](https://sonarcloud.io/dashboard?id=JDiscordBots_NightDream-Logging)
a simple, colorful Logging Library
## use Nightdream Logging standalone
* Add Nightdream Logging to the dependencies section of your `pom.xml` (replace VERSION with [](https://maven-badges.herokuapp.com/maven-central/io.github.jdiscordbots/nightdream-logging)):
```xml
io.github.jdiscordbots
nightdream-logging
VERSION
compile
```
# Limitations
NightDream-Logging does **not** support coloring on Windows versions lower than *10*.
This is because older windows versions do not support native ANSI escape codes.
NightDream-Logging will just display the Logs without colering in those versions.
## use Nightdream Logging with SLF4J
* Add Nightdream Logging and slf4j-api to the dependencies section of your `pom.xml` (replace NDL-VERSION with
[](https://maven-badges.herokuapp.com/maven-central/io.github.jdiscordbots/nightdream-logging)
and SLF4J-VERSION with
[](https://maven-badges.herokuapp.com/maven-central/org.slf4j/slf4j-api)
):
```xml
io.github.jdiscordbots
nightdream-logging
NDL-VERSION
compile
org.slf4j
slf4j-api
SLF4J-VERSION
```