summaryrefslogtreecommitdiff
path: root/src/daemon/dlt.conf
diff options
context:
space:
mode:
authorAlexander Wenzel <Alexander.AW.Wenzel@bmw.de>2011-11-09 22:04:30 +0100
committerAlexander Wenzel <Alexander.AW.Wenzel@bmw.de>2011-11-09 22:04:30 +0100
commitc9496d17980bbc9a2c5b30742e6ff1ff7ec299b2 (patch)
treed714151f647e5cbe4980fe0f3000fbbc6cdad03e /src/daemon/dlt.conf
parent4dce943dca5f9f9f49287819504c15ded49e7fc8 (diff)
downloadDLT-daemon-c9496d17980bbc9a2c5b30742e6ff1ff7ec299b2.tar.gz
Added dlt-daemon internal logging configuration into dlt.conf file.
Internal logging to file now also possible.
Diffstat (limited to 'src/daemon/dlt.conf')
-rw-r--r--src/daemon/dlt.conf11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/daemon/dlt.conf b/src/daemon/dlt.conf
index 629794d..a410d19 100644
--- a/src/daemon/dlt.conf
+++ b/src/daemon/dlt.conf
@@ -30,6 +30,17 @@ SharedMemorySize = 40000
# Directory where to store the persistant configuration (Default: /tmp)
# PersistanceStoragePath = /tmp
+# The logging console for internal logging of dlt-daemon (Default: 0)
+# 0 = log to stdout, 1 = log to syslog, 2 = log to file (see LoggingFilename)
+LoggingMode = 2
+
+# The internal log level, up to which logs are written (Default: 6)
+# LOG_EMERG = 0, LOG_ALERT = 1, LOG_CRIT = 2, LOG_ERR = 3, LOG_WARNING = 4, LOG_NOTICE = 5, LOG_INFO = 6, LOG_DEBUG = 7
+LoggingLevel = 6
+
+# The logging filename if internal logging mode is log to file (Default: /tmp/log)
+LoggingFilename = /tmp/dlt.log
+
########################################################################
# Offline Trace memory #
########################################################################