Skip to content

JDiscordBots/NightDream-Logging

Repository files navigation

NightDream Logging

Build Status Quality Gate Status

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):
<dependencies>
	<dependency>
		<groupId>io.github.jdiscordbots</groupId>
		<artifactId>nightdream-logging</artifactId>
		<version>VERSION</version>
		<scope>compile</scope>
	</dependency>
</dependencies>

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 and SLF4J-VERSION with Maven Central ):
<dependencies>
	<dependency>
		<groupId>io.github.jdiscordbots</groupId>
		<artifactId>nightdream-logging</artifactId>
		<version>NDL-VERSION</version>
		<scope>compile</scope>
	</dependency>
	<dependency>
		<groupId>org.slf4j</groupId>
		<artifactId>slf4j-api</artifactId>
		<version>SLF4J-VERSION</version>
	</dependency>
</dependencies>