Usage Example
Usage Example
@Override
public void onEnable() {
Plugin htgLoggersPlugin = getServer().getPluginManager().getPlugin("HTGLoggers");
if (htgLoggersPlugin instanceof HTGLoggers) {
HTGLoggersAPI.initialize((HTGLoggers) htgLoggersPlugin);
HTGLoggersAPI.createLogFile("MyPlugin");
HTGLoggersAPI.logToFile("Plugin started successfully!", "MyPlugin");
} else {
getLogger().log(Level.WARNING, "HTGLoggers plugin not found or incompatible!");
}
}Log Levels
Last updated