Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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

```