Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarc Khouzam2013-12-19 02:40:41 +0000
committerMarc Khouzam2013-12-23 18:27:06 +0000
commit80d5db77489dd8d0e6f1e5c6ab6fb9ad788c353a (patch)
tree3f6eee69a65f1679df0efe6e827457f1d72b52f8
parentdb22538a25cf105ce0eaa0c9bc3345c81e11f517 (diff)
downloadorg.eclipse.cdt-80d5db77489dd8d0e6f1e5c6ab6fb9ad788c353a.tar.gz
org.eclipse.cdt-80d5db77489dd8d0e6f1e5c6ab6fb9ad788c353a.tar.xz
org.eclipse.cdt-80d5db77489dd8d0e6f1e5c6ab6fb9ad788c353a.zip
Bug 424397 - Don't print full stack trace in case spawner native is not
available Change-Id: Id950622f6ca39639addeedc33e8d1c3fadd611e0 Signed-off-by: Marc Khouzam <marc.khouzam@ericsson.com> Reviewed-on: https://git.eclipse.org/r/20028
-rw-r--r--core/org.eclipse.cdt.core/utils/org/eclipse/cdt/utils/spawner/ProcessFactory.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/org.eclipse.cdt.core/utils/org/eclipse/cdt/utils/spawner/ProcessFactory.java b/core/org.eclipse.cdt.core/utils/org/eclipse/cdt/utils/spawner/ProcessFactory.java
index 4e47818fe27..741ec8a8818 100644
--- a/core/org.eclipse.cdt.core/utils/org/eclipse/cdt/utils/spawner/ProcessFactory.java
+++ b/core/org.eclipse.cdt.core/utils/org/eclipse/cdt/utils/spawner/ProcessFactory.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2009 QNX Software Systems and others.
+ * Copyright (c) 2000, 2013 QNX Software Systems and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -42,7 +42,7 @@ public class ProcessFactory {
} catch (SecurityException e) {
e.printStackTrace();
} catch (UnsatisfiedLinkError e) {
- e.printStackTrace();
+ CCorePlugin.log(e.getMessage());
}
}

Back to the top