mirror of
https://github.com/songoda/SongodaCore.git
synced 2025-01-25 08:41:38 +01:00
92ff9cebd5
Implement own logger to prefix message with plugin name (if available) and CraftaroCore. We prefix with both because the Core is shaded and this way it is clearly logged "which" Core is logging what. This is also the reason why the Logger's name is now `CoreLogger.class.getCanonicalName()` instead of CraftaroCore to uniquely identify each logger. (similar to what Bukkit's PluginLogger does). |
||
---|---|---|
.github | ||
Compatibility | ||
Core | ||
NMS | ||
.editorconfig | ||
.gitignore | ||
LICENSE | ||
pom.xml | ||
README.md |
CraftaroCore
An elaborate multi functional general Spigot plugin compatibility core and general use API.
Maven
Repository
<repository>
<id>songoda-public</id>
<url>https://repo.songoda.com/repository/public/</url>
</repository>
Artifact
<dependency>
<groupId>com.songoda</groupId>
<artifactId>SongodaCore</artifactId>
<version>VERSION</version>
</dependency>
Gradle
Repository
repositories {
maven {
url 'https://repo.songoda.com/repository/public/'
}
}
Artifact
dependencies {
compileOnly 'com.songoda:SongodaCore:VERSION'
}