-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathdebug.ini.sample
More file actions
33 lines (28 loc) · 1.23 KB
/
debug.ini.sample
File metadata and controls
33 lines (28 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
##########################################################################
# debug.ini.sample - Example configuration for RDK Logger
#
# Each line sets the logging level for a module.
# Format:
# LOG.RDK.<MODULE>=<LEVEL>
#
# Log levels (from most to least verbose):
# TRACE - Enables TRACE, DEBUG, INFO, NOTICE, WARN, ERROR, FATAL
# DEBUG - Enables DEBUG, INFO, NOTICE, WARN, ERROR, FATAL
# INFO - Enables INFO, NOTICE, WARN, ERROR, FATAL
# NOTICE - Enables NOTICE, WARN, ERROR, FATAL
# WARN - Enables WARN, ERROR, FATAL
# ERROR - Enables ERROR, FATAL
# FATAL - Enables FATAL only
#
# LOG.RDK.DEFAULT sets the default log level for all modules not explicitly listed.
##########################################################################
LOG.RDK.DEFAULT=WARNING
# All modules not listed (no override) will log WARN, ERROR, and FATAL messages
#LOG.RDK.TEST=DEBUG
# Enables DEBUG and all higher-severity logs (INFO, NOTICE, WARN, ERROR, FATAL) for LOG.RDK.TEST
#LOG.RDK.SAMPLE=INFO
# Enables INFO and all higher-severity logs (NOTICE, WARN, ERROR, FATAL) for LOG.RDK.SAMPLE
LOG.RDK.FOO=INFO
# LOG.RDK.FOO will log INFO, NOTICE, WARN, ERROR, and FATAL messages
LOG.RDK.BAR = NONE
#ALL logs will be disabled for this module