打印彩色日志消息

Print colored log messages

我想用一些颜色记录一条消息(例如"Enabled!")。 到目前为止我有:

public void onEnabled() {
    // Here goes the method to say "Enabled!" colored
}

我试过:

getLogger().info(ChatColor.GREEN + "Enabled!");

但它不起作用:它显示好像我没有添加 ChatColor.GREEN

您必须将消息发送给控制台发件人:

Bukkit.getServer().getConsoleSender().sendMessage(ChatColor.GREEN + "Enabled!");

所以会是:

public void onEnabled() {
    Bukkit.getServer().getConsoleSender().sendMessage(ChatColor.GREEN + "Enabled!");
}