Fixed Metrics' error message

This commit is contained in:
Acrobot 2012-04-19 16:14:12 +02:00
parent 6faa4321df
commit 7a3078aedc
1 changed files with 2 additions and 2 deletions

View File

@ -166,10 +166,10 @@ public class Metrics {
// Reload the metrics file
configuration.load(CONFIG_FILE);
} catch (IOException ex) {
Bukkit.getLogger().log(Level.INFO, "[Metrics] {0}", ex.getMessage());
Bukkit.getLogger().log(Level.INFO, "[Metrics] " + ex.getMessage());
return true;
} catch (InvalidConfigurationException ex) {
Bukkit.getLogger().log(Level.INFO, "[Metrics] {0}", ex.getMessage());
Bukkit.getLogger().log(Level.INFO, "[Metrics] " + ex.getMessage());
return true;
}
return configuration.getBoolean("opt-out", false);