Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 24 days 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 (about 5 years ago)
- Default Branch: master
- Last Pushed: 2022-09-18T20:10:01.000Z (about 2 years ago)
- Last Synced: 2024-10-14T20:23:16.355Z (24 days 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
[![Build Status](https://travis-ci.com/JDiscordBots/NightDream-Logging.svg?branch=master)](https://travis-ci.com/JDiscordBots/NightDream-Logging)
[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=JDiscordBots_NightDream-Logging&metric=alert_status)](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 [![Maven Central](https://maven-badges.herokuapp.com/maven-central/io.github.jdiscordbots/nightdream-logging/badge.svg)](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
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/io.github.jdiscordbots/nightdream-logging/badge.svg)](https://maven-badges.herokuapp.com/maven-central/io.github.jdiscordbots/nightdream-logging)
and SLF4J-VERSION with
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.slf4j/slf4j-api/badge.svg)](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
```