From e8b45dba8856637637e069799027edc9bff430bf Mon Sep 17 00:00:00 2001 From: Alexander Schepp Date: Sun, 30 Dec 2012 00:23:04 +0100 Subject: Use the right formatter in XMPP --- EssentialsXMPP/src/com/earth2me/essentials/xmpp/XMPPManager.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'EssentialsXMPP/src/com') diff --git a/EssentialsXMPP/src/com/earth2me/essentials/xmpp/XMPPManager.java b/EssentialsXMPP/src/com/earth2me/essentials/xmpp/XMPPManager.java index 673ef3377..582c8cbef 100644 --- a/EssentialsXMPP/src/com/earth2me/essentials/xmpp/XMPPManager.java +++ b/EssentialsXMPP/src/com/earth2me/essentials/xmpp/XMPPManager.java @@ -11,6 +11,7 @@ import java.util.logging.Handler; import java.util.logging.Level; import java.util.logging.LogRecord; import java.util.logging.Logger; +import java.util.logging.SimpleFormatter; import org.bukkit.entity.Player; import org.jivesoftware.smack.*; import org.jivesoftware.smack.Roster.SubscriptionMode; @@ -22,6 +23,7 @@ import org.jivesoftware.smack.util.StringUtils; public class XMPPManager extends Handler implements MessageListener, ChatManagerListener, IConf { private static final Logger LOGGER = Logger.getLogger("Minecraft"); + private static final SimpleFormatter formatter = new SimpleFormatter(); private final transient EssentialsConf config; private transient XMPPConnection connection; private transient ChatManager chatManager; @@ -262,7 +264,7 @@ public class XMPPManager extends Handler implements MessageListener, ChatManager XMPPManager.this.startChat(user); for (LogRecord logRecord : copy) { - final String message = String.format("[" + logRecord.getLevel().getLocalizedName() + "] " + logRecord.getMessage(), logRecord.getParameters()); + final String message = formatter.format(logRecord); if (!XMPPManager.this.sendMessage(user, Util.stripLogColorFormat(message))) { failedUsers.add(user); -- cgit v1.2.3