diff options
author | Michael Bien <[email protected]> | 2010-03-31 13:02:35 +0200 |
---|---|---|
committer | Michael Bien <[email protected]> | 2010-03-31 13:02:35 +0200 |
commit | f76e3bb1cff43d35b6884c17418ea20cd4ed5e22 (patch) | |
tree | 0bcd48147ae46947e54c23f2c4c3074e67a70054 /test/junit/com/sun/gluegen/BuildUtil.java | |
parent | 3946dbecf6018ddd7a404af60e7d7e9907491721 (diff) |
reduced verbosity in test output.
Diffstat (limited to 'test/junit/com/sun/gluegen/BuildUtil.java')
-rw-r--r-- | test/junit/com/sun/gluegen/BuildUtil.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/junit/com/sun/gluegen/BuildUtil.java b/test/junit/com/sun/gluegen/BuildUtil.java index dd46221..35dc0c1 100644 --- a/test/junit/com/sun/gluegen/BuildUtil.java +++ b/test/junit/com/sun/gluegen/BuildUtil.java @@ -43,8 +43,8 @@ public final class BuildUtil { throw new RuntimeException("can not determine gluegen root", ex); } - path = gluegenRoot + "/test/junit/com/sun/gluegen"; - testOutput = gluegenRoot + "/" + rootrel_build + "/test"; + path = gluegenRoot + "/test/junit/com/sun/gluegen"; + testOutput = gluegenRoot + "/" + rootrel_build + "/test"; out.println("path: "+path); out.println("testOutput: "+testOutput); @@ -61,7 +61,7 @@ public final class BuildUtil { DefaultLogger logger = new DefaultLogger(); logger.setErrorPrintStream(out); logger.setOutputPrintStream(out); - logger.setMessageOutputLevel(Project.MSG_INFO); + logger.setMessageOutputLevel(Project.MSG_WARN); project.addBuildListener(logger); project.init(); |