diff options
author | Lionel Elie Mamane <lionel@mamane.lu> | 2012-07-12 23:28:10 +0200 |
---|---|---|
committer | Lionel Elie Mamane <lionel@mamane.lu> | 2012-07-12 23:39:08 +0200 |
commit | 3d3b3f656f92790225b89aa31ee61163fb2fc7e5 (patch) | |
tree | 55db17876524bff10f596c7a9d15ea44c701d28f /wizards | |
parent | ede56437f9641cad698b97b2dd14b0c1c37dfcce (diff) |
errors to stderr
Change-Id: I01756622dd7700d3918d156f118cd69c8a15879a
Diffstat (limited to 'wizards')
-rw-r--r-- | wizards/com/sun/star/wizards/db/SQLQueryComposer.java | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/wizards/com/sun/star/wizards/db/SQLQueryComposer.java b/wizards/com/sun/star/wizards/db/SQLQueryComposer.java index c191dc45b806..c4438400ace3 100644 --- a/wizards/com/sun/star/wizards/db/SQLQueryComposer.java +++ b/wizards/com/sun/star/wizards/db/SQLQueryComposer.java @@ -67,7 +67,7 @@ public class SQLQueryComposer } catch (Exception exception) { - exception.printStackTrace(System.out); + exception.printStackTrace(System.err); } } @@ -140,7 +140,7 @@ public class SQLQueryComposer } catch (Exception exception) { - exception.printStackTrace(System.out); + exception.printStackTrace(System.err); } } @@ -171,7 +171,7 @@ public class SQLQueryComposer } catch (Exception e) { - e.printStackTrace(System.out); + e.printStackTrace(System.err); } } } @@ -327,7 +327,7 @@ public class SQLQueryComposer } catch (Exception exception) { - exception.printStackTrace(System.out); + exception.printStackTrace(System.err); displaySQLErrorDialog(exception, _xParentWindow); return false; } @@ -425,7 +425,7 @@ public class SQLQueryComposer } catch (Exception typeexception) { - typeexception.printStackTrace(System.out); + typeexception.printStackTrace(System.err); } } |