-
Notifications
You must be signed in to change notification settings - Fork 83
/
log4cxx.properties
37 lines (28 loc) · 1.22 KB
/
log4cxx.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
#
# 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.
log4j.rootLogger=warn, A1
# This command sets the root logger to allow messages down to the debug level.
# log4j.rootLogger=debug, A1
# A1 is set to be a ConsoleAppender.
log4j.appender.A1=org.apache.log4j.ConsoleAppender
# A1 uses PatternLayout.
log4j.appender.A1.layout=org.apache.log4j.PatternLayout
# log4j.appender.A1.layout.ConversionPattern=%-4r %-5p %c - %m (special format)%n
log4j.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
log4j.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
# log4j.logger.sprokit.python.any_converter=warn
# disable excessive module loader messages
log4j.logger.vital.plugin_manager=warn
log4j.logger.vital.plugin_loader=warn
log4j.logger.sprokit.register_cluster=warn
# end of file