mirror of
https://github.com/plexusorg/Plex.git
synced 2024-12-22 17:17:37 +00:00
Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
29b547fc8b
@ -19,7 +19,7 @@ public class GameRuleService extends AbstractService
|
||||
for (World world : Bukkit.getWorlds())
|
||||
{
|
||||
commitGameRules(world);
|
||||
PlexLog.log("Set gamerules for world: " + world);
|
||||
PlexLog.debug("Set gamerules for world: " + world.getName());
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1,10 +1,13 @@
|
||||
package dev.plex.util;
|
||||
|
||||
import dev.plex.Plex;
|
||||
import org.bukkit.Bukkit;
|
||||
import org.bukkit.ChatColor;
|
||||
|
||||
public class PlexLog
|
||||
{
|
||||
private static final boolean debugEnabled = Plex.get().config.getBoolean("debug");
|
||||
|
||||
public static void log(String message)
|
||||
{
|
||||
Bukkit.getConsoleSender().sendMessage(String.format(ChatColor.YELLOW + "[Plex] " + ChatColor.GRAY + "%s", message));
|
||||
@ -12,6 +15,14 @@ public class PlexLog
|
||||
|
||||
public static void error(String message)
|
||||
{
|
||||
Bukkit.getConsoleSender().sendMessage(String.format(ChatColor.RED + "[Plex Error]" + ChatColor.GOLD + "%s", message));
|
||||
Bukkit.getConsoleSender().sendMessage(String.format(ChatColor.RED + "[Plex Error] " + ChatColor.GOLD + "%s", message));
|
||||
}
|
||||
|
||||
public static void debug(String message)
|
||||
{
|
||||
if (debugEnabled)
|
||||
{
|
||||
Bukkit.getConsoleSender().sendMessage(String.format(ChatColor.DARK_PURPLE + "[Plex Debug] " + ChatColor.GOLD + "%s", message));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -40,4 +40,7 @@ worlds:
|
||||
grass_block: 1
|
||||
dirt: 32
|
||||
stone: 16
|
||||
bedrock: 1
|
||||
bedrock: 1
|
||||
|
||||
# Additional logging for debugging
|
||||
debug: false
|
Loading…
Reference in New Issue
Block a user