Making warning show on System.err

This commit is contained in:
Joakim Erdfelt 2013-08-17 14:27:18 -07:00 committed by Greg Wilkins
parent 46a94956ee
commit fe4b922127
1 changed files with 2 additions and 2 deletions

View File

@ -362,8 +362,8 @@ public class Main
// Anything else is considered an XML file.
if (xmls.contains(arg))
{
System.out.println("WARN: Argument '" + arg + "' specified multiple times. Check start.ini?");
System.out.println("Use \"java -jar start.jar --help\" for more information.");
System.err.println("WARN: Argument '" + arg + "' specified multiple times. Check start.ini?");
System.err.println("Use \"java -jar start.jar --help\" for more information.");
}
xmls.add(arg);
}