Skip to content

Instantly share code, notes, and snippets.

@riking
Created June 23, 2013 08:38
Show Gist options
  • Save riking/5844310 to your computer and use it in GitHub Desktop.
Save riking/5844310 to your computer and use it in GitHub Desktop.
public void logColor(String s) {
ConsoleCommandSender c = Bukkit.getConsoleSender();
if (c != null) {
c.sendMessage(s);
} else {
getLogger().info(ChatColor.stripColor(s));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment