Kaydet (Commit) 3d3b3f65 authored tarafından Lionel Elie Mamane's avatar Lionel Elie Mamane

errors to stderr

Change-Id: I01756622dd7700d3918d156f118cd69c8a15879a
üst ede56437
...@@ -67,7 +67,7 @@ public class SQLQueryComposer ...@@ -67,7 +67,7 @@ public class SQLQueryComposer
} }
catch (Exception exception) catch (Exception exception)
{ {
exception.printStackTrace(System.out); exception.printStackTrace(System.err);
} }
} }
...@@ -140,7 +140,7 @@ public class SQLQueryComposer ...@@ -140,7 +140,7 @@ public class SQLQueryComposer
} }
catch (Exception exception) catch (Exception exception)
{ {
exception.printStackTrace(System.out); exception.printStackTrace(System.err);
} }
} }
...@@ -171,7 +171,7 @@ public class SQLQueryComposer ...@@ -171,7 +171,7 @@ public class SQLQueryComposer
} }
catch (Exception e) catch (Exception e)
{ {
e.printStackTrace(System.out); e.printStackTrace(System.err);
} }
} }
} }
...@@ -327,7 +327,7 @@ public class SQLQueryComposer ...@@ -327,7 +327,7 @@ public class SQLQueryComposer
} }
catch (Exception exception) catch (Exception exception)
{ {
exception.printStackTrace(System.out); exception.printStackTrace(System.err);
displaySQLErrorDialog(exception, _xParentWindow); displaySQLErrorDialog(exception, _xParentWindow);
return false; return false;
} }
...@@ -425,7 +425,7 @@ public class SQLQueryComposer ...@@ -425,7 +425,7 @@ public class SQLQueryComposer
} }
catch (Exception typeexception) catch (Exception typeexception)
{ {
typeexception.printStackTrace(System.out); typeexception.printStackTrace(System.err);
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment