unable to load tournament config changed from ERROR! to WARNING.

master
melvin 2011-07-25 14:00:58 +08:00
parent b2d4580f40
commit 700c236815
2 changed files with 1 additions and 3 deletions

View File

@ -281,8 +281,6 @@ public class GeneralConfig {
load(properties); load(properties);
} catch (final IOException ex) { } catch (final IOException ex) {
System.err.println("WARNING! unable to load " + getConfigFile()); System.err.println("WARNING! unable to load " + getConfigFile());
//System.err.println(ex.getMessage());
//ex.printStackTrace();
} }
} }

View File

@ -178,7 +178,7 @@ public class TournamentConfig {
load(properties); load(properties);
System.err.println("Loaded tournament config"); System.err.println("Loaded tournament config");
} catch (final IOException ex) { } catch (final IOException ex) {
System.err.println("ERROR! Unable to load tournament config"); System.err.println("WARNING. Unable to load tournament config");
} }
} }