xref: /OpenGrok/docker/logging.properties (revision 7dc67bdb494b3608cd0c93faa72a497eb361ff60)
1*7dc67bdbSVladimir Kotal# Copyright 2017 Google Inc. All Rights Reserved.
2*7dc67bdbSVladimir Kotal#
3*7dc67bdbSVladimir Kotal# Licensed to the Apache Software Foundation (ASF) under one or more
4*7dc67bdbSVladimir Kotal# contributor license agreements.  See the NOTICE file distributed with
5*7dc67bdbSVladimir Kotal# this work for additional information regarding copyright ownership.
6*7dc67bdbSVladimir Kotal# The ASF licenses this file to You under the Apache License, Version 2.0
7*7dc67bdbSVladimir Kotal# (the "License"); you may not use this file except in compliance with
8*7dc67bdbSVladimir Kotal# the License.  You may obtain a copy of the License at
9*7dc67bdbSVladimir Kotal#
10*7dc67bdbSVladimir Kotal#     http://www.apache.org/licenses/LICENSE-2.0
11*7dc67bdbSVladimir Kotal#
12*7dc67bdbSVladimir Kotal# Unless required by applicable law or agreed to in writing, software
13*7dc67bdbSVladimir Kotal# distributed under the License is distributed on an "AS IS" BASIS,
14*7dc67bdbSVladimir Kotal# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15*7dc67bdbSVladimir Kotal# See the License for the specific language governing permissions and
16*7dc67bdbSVladimir Kotal# limitations under the License.
17*7dc67bdbSVladimir Kotal
18*7dc67bdbSVladimir Kotalhandlers = java.util.logging.ConsoleHandler
19*7dc67bdbSVladimir Kotal
20*7dc67bdbSVladimir Kotal.handlers = java.util.logging.ConsoleHandler
21*7dc67bdbSVladimir Kotal
22*7dc67bdbSVladimir Kotal############################################################
23*7dc67bdbSVladimir Kotal# Handler specific properties.
24*7dc67bdbSVladimir Kotal# Describes specific configuration info for Handlers.
25*7dc67bdbSVladimir Kotal############################################################
26*7dc67bdbSVladimir Kotal
27*7dc67bdbSVladimir Kotaljava.util.logging.ConsoleHandler.level = FINE
28*7dc67bdbSVladimir Kotaljava.util.logging.ConsoleHandler.formatter = org.apache.juli.OneLineFormatter
29*7dc67bdbSVladimir Kotal
30*7dc67bdbSVladimir Kotal############################################################
31*7dc67bdbSVladimir Kotal# Facility specific properties.
32*7dc67bdbSVladimir Kotal# Provides extra control for each logger.
33*7dc67bdbSVladimir Kotal############################################################
34*7dc67bdbSVladimir Kotal
35*7dc67bdbSVladimir Kotalorg.apache.catalina.core.ContainerBase.[Catalina].[localhost].level = INFO
36*7dc67bdbSVladimir Kotalorg.apache.catalina.core.ContainerBase.[Catalina].[localhost].handlers = java.util.logging.ConsoleHandler
37*7dc67bdbSVladimir Kotal
38*7dc67bdbSVladimir Kotalorg.apache.catalina.core.ContainerBase.[Catalina].[localhost].[/manager].level = INFO
39*7dc67bdbSVladimir Kotalorg.apache.catalina.core.ContainerBase.[Catalina].[localhost].[/manager].handlers =  java.util.logging.ConsoleHandler
40*7dc67bdbSVladimir Kotal
41*7dc67bdbSVladimir Kotalorg.apache.catalina.core.ContainerBase.[Catalina].[localhost].[/host-manager].level = INFO
42*7dc67bdbSVladimir Kotalorg.apache.catalina.core.ContainerBase.[Catalina].[localhost].[/host-manager].handlers = java.util.logging.ConsoleHandler
43