This repository has been archived by the owner on Jun 2, 2020. It is now read-only.
forked from sayanh/mondrian
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlog4j.properties
49 lines (36 loc) · 1.57 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
# log4j.properties - Example log4j properties file
#
# This software is subject to the terms of the Eclipse Public License v1.0
# Agreement, available at the following URL:
# http://www.eclipse.org/legal/epl-v10.html.
# You must accept the terms of that agreement to use this software.
#
# Copyright (C) 2005-2012 Pentaho and others
# All Rights Reserved.
#
# Set root logger level to DEBUG and its only appender to MONDRIAN.
log4j.rootLogger=INFO, MONDRIAN
# MONDRIAN is set to be a ConsoleAppender.
log4j.appender.MONDRIAN=org.apache.log4j.ConsoleAppender
# MONDRIAN uses PatternLayout.
log4j.appender.MONDRIAN.layout=org.apache.log4j.PatternLayout
log4j.appender.MONDRIAN.layout.ConversionPattern=%-4r [%t] %-5p %F %l %x - %m%n
# Example of setting on a class basis
log4j.category.mondrian.rolap.RolapCube=ERROR, MONDRIAN
log4j.category.mondrian.rolap.RolapSchema=ERROR, MONDRIAN
log4j.category.mondrian.rolap.agg.AggregationManager=ERROR, MONDRIAN
log4j.category.mondrian.server.monitor=ERROR, MONDRIAN
# Trace MDX statements
log4j.category.mondrian.mdx=ERROR, MONDRIAN
# Trace SQL statements
log4j.category.mondrian.sql=DEBUG, MONDRIAN1
log4j.appender.MONDRIAN1.layout=org.apache.log4j.PatternLayout
log4j.appender.MONDRIAN1.layout.ConversionPattern=%-4r [%t] %-5p %F %l %x - %m%n
log4j.additivity.MONDRIAN1=false
# Statement profiling
log4j.category.mondrian.profile=ERROR, MONDRIAN
# Schema cache
log4j.category.mondrian.rolap.RolapSchemaPool=ERROR, MONDRIAN
# Performance test is disabled by default.
log4j.category.mondrian.test.PerformanceTest=OFF, MONDRIAN
# End log4j.properties