forked from oltpbenchmark/oltpbench
-
Notifications
You must be signed in to change notification settings - Fork 0
/
log4j.properties
49 lines (40 loc) · 1.93 KB
/
log4j.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
46
47
48
49
# Set root logger level to DEBUG and its only appender to A1.
log4j.rootLogger=INFO, A1
log4j.rootLogger.layout=org.apache.log4j.PatternLayout
# A1 is set to be a ConsoleAppender.
log4j.appender.A1=org.apache.log4j.ConsoleAppender
log4j.appender.A1.layout=org.apache.log4j.PatternLayout
log4j.appender.A1.layout.ConversionPattern=%d{ABSOLUTE} (%F:%L) %-5p - %m%n
# API
log4j.logger.com.oltpbenchmark=INFO
log4j.logger.com.oltpbenchmark.api=INFO
# Benchmarks
log4j.logger.com.oltpbenchmark.benchmarks.tatp=INFO
log4j.logger.com.oltpbenchmark.benchmarks.twitter=INFO
log4j.logger.com.oltpbenchmark.benchmarks.wikipedia=INFO
log4j.logger.com.oltpbenchmark.benchmarks.epinions=INFO
log4j.logger.com.oltpbenchmark.benchmarks.ycsb=INFO
log4j.logger.com.oltpbenchmark.benchmarks.seats=INFO
log4j.logger.com.oltpbenchmark.benchmarks.linkbench=INFO
log4j.logger.com.oltpbenchmark.benchmarks.sibench=INFO
log4j.logger.com.oltpbenchmark.benchmarks.seats=INFO
log4j.logger.com.oltpbenchmark.benchmarks.auctionmark=INFO
log4j.logger.com.oltpbenchmark.benchmarks.chbenchmark=INFO
# Loaders
log4j.logger.com.oltpbenchmark.benchmarks.wikipedia.WikipediaLoader=INFO
!==============================================================================
! log4j.properties - An example configuration properties file for log4j.
!
! Logging levels are:
! DEBUG < INFO < WARN < ERROR < FATAL
!==============================================================================
! turn on the internal log4j debugging flag so we can see what it is doing
#log4j.debug=true
!==============================================================================
! JDBC API layer call logging :
! INFO shows logging, DEBUG also shows where in code the jdbc calls were made,
! setting DEBUG to true might cause minor slow-down in some environments.
! If you experience too much slowness, use INFO instead.
! Log only the SQL that is executed.
log4j.logger.jdbc.sqlonly=DEBUG,A1
log4j.additivity.jdbc.sqlonly=false