summaryrefslogtreecommitdiff
path: root/src/daemon/dlt.conf
diff options
context:
space:
mode:
Diffstat (limited to 'src/daemon/dlt.conf')
-rw-r--r--src/daemon/dlt.conf14
1 files changed, 13 insertions, 1 deletions
diff --git a/src/daemon/dlt.conf b/src/daemon/dlt.conf
index aab9c7d..376a94f 100644
--- a/src/daemon/dlt.conf
+++ b/src/daemon/dlt.conf
@@ -6,7 +6,7 @@
# General configuration #
########################################################################
-# Start daemon in dubug mode, so that all internal debug information is printed out on the console
+# Start daemon in debug mode, so that all internal debug information is printed out on the console
# Verbose = 1
# Daemonize DLT daemon, if it is started as daemon
@@ -56,6 +56,18 @@ RingbufferMaxSize = 10000000
# The step size the Ringbuffer is increased, used for storing temporary DLT messages, until client is connected (Default: 500000)
RingbufferStepSize = 500000
+# Initial log-level that is sent when an application registers (Default: 4)
+# DLT_LOG_OFF = 0, DLT_LOG_FATAL = 1, DLT_LOG_ERROR = 2, DLT_LOG_WARN = 3, DLT_LOG_INFO = 4, DLT_LOG_DEBUG = 5, DLT_LOG_VERBOSE = 6
+# ContextLogLevel = 4
+
+# Initial trace-status that is sent when an application registers (Default: 0)
+# DLT_TRACE_STATUS_OFF = 0, DLT_TRACE_STATUS_ON = 1
+# ContextTraceStatus = 0
+
+# Force log level and trace status of context to not exceed "ContextLogLevel" and "ContextTraceStatus" (Default: 0 = OFF)
+# If set to 1 (ON) whenever a context registers or changes the log-level it has to be lower or equal to ContextLogLevel
+# ForceContextLogLevelAndTraceStatus = 1
+
########################################################################
# Control Application #
########################################################################