Log ALL the things!

This commit is contained in:
GJ 2013-02-12 22:18:47 -05:00
parent e37f5e765e
commit aa0acf767b
9 changed files with 20 additions and 18 deletions

View File

@ -579,9 +579,9 @@ public final class Database {
} }
private static void printErrors(SQLException ex) { private static void printErrors(SQLException ex) {
System.out.println("SQLException: " + ex.getMessage()); mcMMO.p.getLogger().severe("SQLException: " + ex.getMessage());
System.out.println("SQLState: " + ex.getSQLState()); mcMMO.p.getLogger().severe("SQLState: " + ex.getSQLState());
System.out.println("VendorError: " + ex.getErrorCode()); mcMMO.p.getLogger().severe("VendorError: " + ex.getErrorCode());
} }
public static void profileCleanup(String playerName) { public static void profileCleanup(String playerName) {

View File

@ -279,7 +279,7 @@ public final class Leaderboard {
writer.append(line).append("\r\n"); writer.append(line).append("\r\n");
} }
else { else {
System.out.println("User found, removing..."); mcMMO.p.getLogger().info("User found, removing...");
worked = true; worked = true;
continue; //Skip the player continue; //Skip the player
} }
@ -359,7 +359,7 @@ public final class Leaderboard {
writer.append(line).append("\r\n"); writer.append(line).append("\r\n");
} }
else { else {
System.out.println("User found, removing..."); mcMMO.p.getLogger().info("User found, removing...");
removedPlayers++; removedPlayers++;
continue; //Skip the player continue; //Skip the player
} }

View File

@ -269,7 +269,7 @@ public class SQLConversionTask implements Runnable {
} }
} }
System.out.println("[mcMMO] MySQL Updated from users file, " + theCount + " items added/updated to MySQL DB"); mcMMO.p.getLogger().info("[mcMMO] MySQL Updated from users file, " + theCount + " items added/updated to MySQL DB");
in.close(); in.close();
} }
catch (Exception e) { catch (Exception e) {

View File

@ -3,6 +3,7 @@ package com.gmail.nossr50.listeners;
import org.bukkit.event.EventHandler; import org.bukkit.event.EventHandler;
import org.bukkit.event.Listener; import org.bukkit.event.Listener;
import com.gmail.nossr50.mcMMO;
import com.gmail.nossr50.events.experience.McMMOPlayerXpGainEvent; import com.gmail.nossr50.events.experience.McMMOPlayerXpGainEvent;
/** /**
@ -23,7 +24,7 @@ public class SelfListener implements Listener {
throw new Exception("Gained negative XP!"); throw new Exception("Gained negative XP!");
} }
catch (Exception e) { catch (Exception e) {
System.out.println(e.getMessage()); mcMMO.p.getLogger().severe(e.getMessage());
e.printStackTrace(); e.printStackTrace();
} }
} }

View File

@ -507,7 +507,7 @@ public class mcMMO extends JavaPlugin {
metrics.start(); metrics.start();
} }
catch (IOException e) { catch (IOException e) {
System.out.println("Failed to submit stats."); mcMMO.p.getLogger().warning("Failed to submit stats.");
} }
} }
} }

View File

@ -2,6 +2,7 @@ package com.gmail.nossr50.skills.utilities;
import org.bukkit.entity.Player; import org.bukkit.entity.Player;
import com.gmail.nossr50.mcMMO;
import com.gmail.nossr50.config.Config; import com.gmail.nossr50.config.Config;
import com.gmail.nossr50.util.Permissions; import com.gmail.nossr50.util.Permissions;
@ -124,7 +125,7 @@ public enum SkillType {
} }
} }
System.out.println("[DEBUG] Invalid mcMMO skill (" + skillName + ")"); mcMMO.p.getLogger().warning("[DEBUG] Invalid mcMMO skill (" + skillName + ")");
return null; return null;
} }

View File

@ -176,7 +176,7 @@ public class SpoutTools {
} }
if (menuKey == null) { if (menuKey == null) {
System.out.println("Invalid KEY for Menu.Key, using KEY_M"); mcMMO.p.getLogger().warning("Invalid KEY for Menu.Key, using KEY_M");
menuKey = Keyboard.KEY_M; menuKey = Keyboard.KEY_M;
} }
} }

View File

@ -38,7 +38,7 @@ public final class Anniversary {
try { try {
anniversaryFile.createNewFile(); anniversaryFile.createNewFile();
} catch (IOException ex) { } catch (IOException ex) {
System.out.println(ex); mcMMO.p.getLogger().severe(ex.toString());
} }
} }
hasCelebrated = new ArrayList<String>(); hasCelebrated = new ArrayList<String>();
@ -55,7 +55,7 @@ public final class Anniversary {
reader.close(); reader.close();
} catch (Exception ex) { } catch (Exception ex) {
System.out.println(ex); mcMMO.p.getLogger().severe(ex.toString());
} }
} }
@ -70,7 +70,7 @@ public final class Anniversary {
writer.close(); writer.close();
} }
catch (Exception ex) { catch (Exception ex) {
System.out.println(ex); mcMMO.p.getLogger().severe(ex.toString());
} }
} }

View File

@ -28,7 +28,7 @@ public class ZipLibrary {
public static void mcMMObackup() throws IOException { public static void mcMMObackup() throws IOException {
if (Config.getInstance().getUseMySQL()) { if (Config.getInstance().getUseMySQL()) {
System.out.println("No Backup performed, in SQL Mode."); mcMMO.p.getLogger().info("No Backup performed, in SQL Mode.");
return; return;
} }
@ -62,7 +62,7 @@ public class ZipLibrary {
} }
//Actually do something //Actually do something
System.out.println("Backing up your mcMMO Configuration... "); mcMMO.p.getLogger().info("Backing up your mcMMO Configuration... ");
packZip(fileZip, sources); packZip(fileZip, sources);
} }
@ -82,7 +82,7 @@ public class ZipLibrary {
zipOut.flush(); zipOut.flush();
zipOut.close(); zipOut.close();
System.out.println("Backup Completed."); mcMMO.p.getLogger().info("Backup Completed.");
} }
private static String buildPath(String path, String file) { private static String buildPath(String path, String file) {
@ -95,7 +95,7 @@ public class ZipLibrary {
private static void zipDir(ZipOutputStream zos, String path, File dir) throws IOException { private static void zipDir(ZipOutputStream zos, String path, File dir) throws IOException {
if (!dir.canRead()) { if (!dir.canRead()) {
System.out.println("Cannot read " + dir.getCanonicalPath() + " (Maybe because of permissions?)"); mcMMO.p.getLogger().severe("Cannot read " + dir.getCanonicalPath() + " (Maybe because of permissions?)");
return; return;
} }
@ -114,7 +114,7 @@ public class ZipLibrary {
private static void zipFile(ZipOutputStream zos, String path, File file) throws IOException { private static void zipFile(ZipOutputStream zos, String path, File file) throws IOException {
if (!file.canRead()) { if (!file.canRead()) {
System.out.println("Cannot read " + file.getCanonicalPath() + "(File Permissions?)"); mcMMO.p.getLogger().severe("Cannot read " + file.getCanonicalPath() + "(File Permissions?)");
return; return;
} }