Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeff Johnston2018-07-20 23:53:22 +0000
committerJeff Johnston2018-07-21 00:22:51 +0000
commit4778a0ff6702932ec2623321f9ece8199c1035c1 (patch)
tree9dab38cf8e506178a1c070b149748bb10c3d6bf9
parent531977c384e1fecc888e2642532d99ff0ff304bc (diff)
downloadorg.eclipse.linuxtools-4778a0ff6702932ec2623321f9ece8199c1035c1.tar.gz
org.eclipse.linuxtools-4778a0ff6702932ec2623321f9ece8199c1035c1.tar.xz
org.eclipse.linuxtools-4778a0ff6702932ec2623321f9ece8199c1035c1.zip
Bug 537249 - NoStackTrace in SystemTapErrorHandler.writeToLog
- change SystemTapErrorHandler writeToLog to mark it's log messages as INFO Change-Id: I61421895c8678b1fe0732493d7981f53d6eac233 Reviewed-on: https://git.eclipse.org/r/126411 Tested-by: CI Bot Reviewed-by: Jeff Johnston <jjohnstn@redhat.com>
-rw-r--r--systemtap/org.eclipse.linuxtools.callgraph.core/src/org/eclipse/linuxtools/internal/callgraph/core/SystemTapErrorHandler.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/systemtap/org.eclipse.linuxtools.callgraph.core/src/org/eclipse/linuxtools/internal/callgraph/core/SystemTapErrorHandler.java b/systemtap/org.eclipse.linuxtools.callgraph.core/src/org/eclipse/linuxtools/internal/callgraph/core/SystemTapErrorHandler.java
index 10dd0dacda..eb9f67a819 100644
--- a/systemtap/org.eclipse.linuxtools.callgraph.core/src/org/eclipse/linuxtools/internal/callgraph/core/SystemTapErrorHandler.java
+++ b/systemtap/org.eclipse.linuxtools.callgraph.core/src/org/eclipse/linuxtools/internal/callgraph/core/SystemTapErrorHandler.java
@@ -150,7 +150,7 @@ public class SystemTapErrorHandler {
* time.
*/
private void writeToLog() {
- IStatus status = new Status(IStatus.ERROR,CallgraphCorePlugin.PLUGIN_ID,logContents.toString());
+ IStatus status = new Status(IStatus.INFO,CallgraphCorePlugin.PLUGIN_ID,logContents.toString());
CallgraphCorePlugin.getDefault().getLog().log(status);
logContents = new StringBuilder();

Back to the top