bukkit debug message

Solutions on MaxInterview for bukkit debug message by the best coders in the world

showing results for - "bukkit debug message"
Giuseppe
31 Feb 2017
1//Two methods:
2//Method one: broadcast to server-good for testing out things quickly:
3Bukkit.broadcastMessage("Something")
4//Method two: log to console:
5instanceOfJavaPlugin.getLogger().log(Level.WARN, "something")