Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEugene Tarassov2012-07-03 23:37:29 +0000
committerEugene Tarassov2012-07-03 23:37:29 +0000
commit413be52710f648c1ce98f51e5fb66d5bd68d0896 (patch)
tree9ab03c0dc99c1e136ae55c5010212f7a75ef230d
parent219157000832ba8201a6043abe79591480aa0eda (diff)
downloadorg.eclipse.tcf.agent-413be52710f648c1ce98f51e5fb66d5bd68d0896.tar.gz
org.eclipse.tcf.agent-413be52710f648c1ce98f51e5fb66d5bd68d0896.tar.xz
org.eclipse.tcf.agent-413be52710f648c1ce98f51e5fb66d5bd68d0896.zip
Bug 384117 - [PATCH] LOG_CHILD incorrectly present at default log level while being unused
-rw-r--r--agent/tcf/framework/trace.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/agent/tcf/framework/trace.c b/agent/tcf/framework/trace.c
index bd08328b..681f28a1 100644
--- a/agent/tcf/framework/trace.c
+++ b/agent/tcf/framework/trace.c
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2007, 2010 Wind River Systems, Inc. and others.
+ * Copyright (c) 2007, 2012 Wind River Systems, Inc. and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* and Eclipse Distribution License v1.0 which accompany this distribution.
@@ -44,7 +44,8 @@ struct trace_mode trace_mode_table[MAX_TRACE_MODES + 1] = {
{ LOG_WAITPID, "waitpid", "waitpid() events" },
{ LOG_EVENTS, "events", "low-level debugger events" },
{ LOG_PROTOCOL, "protocol", "communication protocol" },
- { LOG_CONTEXT, "context", "debugger actions" },
+ { LOG_CONTEXT, "context", "debug context actions" },
+ { LOG_CHILD, "children", "debug context children" },
{ LOG_DISCOVERY, "discovery", "discovery" },
{ LOG_ASYNCREQ, "asyncreq", "async I/O" },
{ LOG_PROXY, "proxy", "proxy state" },

Back to the top