summaryrefslogtreecommitdiff
path: root/forms
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2012-07-13 09:23:19 +0200
committerThomas Arnhold <thomas@arnhold.org>2012-07-13 12:45:57 +0200
commitcdaddecc5e3ec93294492b3efc38393c91459e10 (patch)
treeb98830825aa14057ac41cf3d7a98502cbf6be5df /forms
parentc26d4d34467008418ebf138412e87886694c326c (diff)
java: printStackTrace always to stderr
like 3d3b3f656f92790225b89aa31ee61163fb2fc7e5 Change-Id: I6e80717de009e8a3a89ffc80cb945cc832917f8c
Diffstat (limited to 'forms')
-rw-r--r--forms/qa/integration/forms/ControlValidation.java2
-rw-r--r--forms/qa/integration/forms/SingleControlValidation.java4
-rw-r--r--forms/qa/integration/forms/TestCase.java4
3 files changed, 5 insertions, 5 deletions
diff --git a/forms/qa/integration/forms/ControlValidation.java b/forms/qa/integration/forms/ControlValidation.java
index 7bab946e4cd9..ca8f2f3a8107 100644
--- a/forms/qa/integration/forms/ControlValidation.java
+++ b/forms/qa/integration/forms/ControlValidation.java
@@ -98,7 +98,7 @@ public class ControlValidation extends complexlib.ComplexTestCase implements com
}
catch ( com.sun.star.uno.Exception e )
{
- e.printStackTrace( System.out );
+ e.printStackTrace( System.err );
}
}
diff --git a/forms/qa/integration/forms/SingleControlValidation.java b/forms/qa/integration/forms/SingleControlValidation.java
index cd1a7070665e..7cadf9eb0262 100644
--- a/forms/qa/integration/forms/SingleControlValidation.java
+++ b/forms/qa/integration/forms/SingleControlValidation.java
@@ -131,7 +131,7 @@ public class SingleControlValidation implements XFormComponentValidityListener
}
catch( java.lang.Exception e )
{
- e.printStackTrace( System.out );
+ e.printStackTrace( System.err );
}
}
@@ -171,7 +171,7 @@ public class SingleControlValidation implements XFormComponentValidityListener
}
catch( com.sun.star.uno.Exception e )
{
- e.printStackTrace( System.out );
+ e.printStackTrace( System.err );
}
}
diff --git a/forms/qa/integration/forms/TestCase.java b/forms/qa/integration/forms/TestCase.java
index 14faad10e53b..54f5b1ff8abd 100644
--- a/forms/qa/integration/forms/TestCase.java
+++ b/forms/qa/integration/forms/TestCase.java
@@ -73,7 +73,7 @@ public abstract class TestCase extends complexlib.ComplexTestCase implements com
}
catch ( java.lang.Exception e )
{
- e.printStackTrace( System.out );
+ e.printStackTrace( System.err );
}
}
@@ -93,7 +93,7 @@ public abstract class TestCase extends complexlib.ComplexTestCase implements com
}
catch ( com.sun.star.uno.Exception e )
{
- e.printStackTrace( System.out );
+ e.printStackTrace( System.err );
}
}