blob: 1253c5ed27eacf4368f1e0edffb0e7b0c5a6cc33 [file] [log] [blame]
Till Westmannea8ab392013-06-05 15:17:08 -07001#/*
Ian Maxon928bbd12015-09-14 17:12:48 -07002# Licensed to the Apache Software Foundation (ASF) under one
3# or more contributor license agreements. See the NOTICE file
4# distributed with this work for additional information
5# regarding copyright ownership. The ASF licenses this file
6# to you under the Apache License, Version 2.0 (the
7# "License"); you may not use this file except in compliance
8# with the License. You may obtain a copy of the License at
9#
10# http://www.apache.org/licenses/LICENSE-2.0
11#
12# Unless required by applicable law or agreed to in writing,
13# software distributed under the License is distributed on an
14# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15# KIND, either express or implied. See the License for the
16# specific language governing permissions and limitations
17# under the License.
vinayakb38b7ca42012-03-05 05:44:15 +000018############################################################
19# Default Logging Configuration File
20#
21# You can use a different file by specifying a filename
22# with the java.util.logging.config.file system property.
23# For example java -Djava.util.logging.config.file=myfile
24############################################################
25
26############################################################
27# Global properties
28############################################################
29
30# "handlers" specifies a comma separated list of log Handler
31# classes. These handlers will be installed during VM startup.
32# Note that these classes must be on the system classpath.
33# By default we only configure a ConsoleHandler, which will only
34# show messages at the INFO and above levels.
35
36handlers= java.util.logging.ConsoleHandler
37
38# To also add the FileHandler, use the following line instead.
39
40# handlers= java.util.logging.FileHandler, java.util.logging.ConsoleHandler
41
42# Default global logging level.
43# This specifies which kinds of events are logged across
44# all loggers. For any given facility this global level
45# can be overriden by a facility specific level
46# Note that the ConsoleHandler also has a separate level
47# setting to limit messages printed to the console.
48
49.level= WARNING
50# .level= INFO
51# .level= FINE
52# .level = FINEST
53
54############################################################
55# Handler specific properties.
56# Describes specific configuration info for Handlers.
57############################################################
58
59# default file output is in user's home directory.
60
61# java.util.logging.FileHandler.pattern = %h/java%u.log
62# java.util.logging.FileHandler.limit = 50000
63# java.util.logging.FileHandler.count = 1
64# java.util.logging.FileHandler.formatter = java.util.logging.XMLFormatter
65
66# Limit the message that are printed on the console to FINE and above.
67
68java.util.logging.ConsoleHandler.level = FINE
69java.util.logging.ConsoleHandler.formatter = java.util.logging.SimpleFormatter
70
71
72############################################################
73# Facility specific properties.
74# Provides extra control for each logger.
75############################################################
76
77# For example, set the com.xyz.foo logger to only log SEVERE
78# messages:
79
buyingyi89a89b52013-05-02 01:15:13 -070080
Ian Maxonf18bba22015-08-21 12:35:14 -070081org.apache.asterix.test.level = INFO
82#org.apache.asterix.level = FINE
83#org.apache.hyracks.algebricks.level = FINE
84#org.apache.hyracks.level = INFO
85org.apache.asterix.test = INFO
86org.apache.asterix.installer.test = INFO