a simple, colorful Logging Library
<dependencies>
<dependency>
<groupId>io.github.jdiscordbots</groupId>
<artifactId>nightdream-logging</artifactId>
<version>VERSION</version>
<scope>compile</scope>
</dependency>
</dependencies>
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.
- Add Nightdream Logging and slf4j-api to the dependencies section of your
pom.xml
(replace NDL-VERSION with and SLF4J-VERSION with ):
<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>