This utility allows you to statically log messages using the Bukkit logging system, with the added benefit of a configurable variable to disallow logging "non-required" log messages, but also that restriction can be bypassed under some conditions.
Example
publicclassExamplePluginextendsAluminaPlugin { @Overridepublicvoidload() { } @Overridepublicvoidenable() {Logs.setDisabled(true); // Disable non-essential logsLogs.INFO.print("Hello, world!"); // This is a non-essential logLogs.INFO.print("Bye, world.",true); // This is an essential log } @Overridepublicvoiddisable() { }}