-
Notifications
You must be signed in to change notification settings - Fork 83
/
log4cplus.properties
45 lines (34 loc) · 1.4 KB
/
log4cplus.properties
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
34
35
36
37
38
39
40
41
42
43
44
45
#
# This file is a template for configuring the logging output for KWIVER.
#
# level are specified as trace, debug, warn, error
#
# Set root logger level to DEBUG and its only appender to A1.
log4cplus.rootLogger=WARN, A1
# This command sets the root logger to allow messages down to the debug level.
# log4cplus.rootLogger=DEBUG, A1
# A1 is set to be a ConsoleAppender.
log4cplus.appender.A1=log4cplus::ConsoleAppender
# A1 uses PatternLayout.
log4cplus.appender.A1.layout=log4cplus::PatternLayout
log4cplus.appender.A1.layout.ConversionPattern=%p [%d %c %l] %m%n
# ------------------------------------------------------------------
# Log messages from the VITAL component can be controlled using the following command.
# level for top level vital logger
log4cplus.logger.vital=WARN
# This is an example of file-grained logging control. A very specific
# logger can be configured as follows:
# disable detailed tracing in prokit python converters
# log4cplus.logger.sprokit.python.any_converter=WARN
# disable excessive module loader messages
log4cplus.logger.vital.plugin_manager=WARN
log4cplus.logger.vital.plugin_loader=WARN
log4cplus.logger.sprokit.register_cluster=WARN
# log4cplus.logger.vital.plugin_explorer = debug
# disable excessive FFMPEG warnings
log4cplus.logger.arrows.ffmpeg=ERROR
###
# Process tracing
# log4cplus.logger.sprokit.process=WARN
# log4cplus.logger.sprokit.process.input=WARN
# end of file