stderr for error messages

This commit is contained in:
Connor Tumbleson
2013-09-07 08:54:07 -05:00
parent 054ddb1388
commit be4ae922de
4 changed files with 10 additions and 9 deletions

View File

@ -791,7 +791,7 @@ final public class AndrolibResources {
if (!dir.exists()) {
if (!dir.mkdirs()) {
if (sFrameworkFolder != null) {
System.out.println("Can't create Framework directory: "
System.err.println("Can't create Framework directory: "
+ dir);
}
throw new AndrolibException("Can't create directory: " + dir);

View File

@ -155,9 +155,9 @@ public class DebugInjector {
localType = "D";
break;
default:
System.out.println(line);
System.out.println(m.group(2));
System.out.println(m.group(3));
System.err.println(line);
System.err.println(m.group(2));
System.err.println(m.group(3));
assert false;
}