source: .smarttomcat/Education-jsp/conf/logging.properties

Last change on this file was 1eb7a55, checked in by Elena Markovska <elena.elenamarkovska@…>, 11 days ago

Initial commit - Scholaris project code

  • Property mode set to 100644
File size: 3.9 KB
Line 
1# Licensed to the Apache Software Foundation (ASF) under one or more
2# contributor license agreements. See the NOTICE file distributed with
3# this work for additional information regarding copyright ownership.
4# The ASF licenses this file to You under the Apache License, Version 2.0
5# (the "License"); you may not use this file except in compliance with
6# the License. You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15
16handlers = 1catalina.org.apache.juli.AsyncFileHandler, 2localhost.org.apache.juli.AsyncFileHandler, 3manager.org.apache.juli.AsyncFileHandler, 4host-manager.org.apache.juli.AsyncFileHandler, java.util.logging.ConsoleHandler
17
18.handlers = 1catalina.org.apache.juli.AsyncFileHandler, java.util.logging.ConsoleHandler
19
20############################################################
21# Handler specific properties.
22# Describes specific configuration info for Handlers.
23############################################################
24
251catalina.org.apache.juli.AsyncFileHandler.level = ALL
261catalina.org.apache.juli.AsyncFileHandler.directory = ${catalina.base}/logs
271catalina.org.apache.juli.AsyncFileHandler.prefix = catalina.
281catalina.org.apache.juli.AsyncFileHandler.maxDays = 90
291catalina.org.apache.juli.AsyncFileHandler.encoding = UTF-8
30
312localhost.org.apache.juli.AsyncFileHandler.level = ALL
322localhost.org.apache.juli.AsyncFileHandler.directory = ${catalina.base}/logs
332localhost.org.apache.juli.AsyncFileHandler.prefix = localhost.
342localhost.org.apache.juli.AsyncFileHandler.maxDays = 90
352localhost.org.apache.juli.AsyncFileHandler.encoding = UTF-8
36
373manager.org.apache.juli.AsyncFileHandler.level = ALL
383manager.org.apache.juli.AsyncFileHandler.directory = ${catalina.base}/logs
393manager.org.apache.juli.AsyncFileHandler.prefix = manager.
403manager.org.apache.juli.AsyncFileHandler.maxDays = 90
413manager.org.apache.juli.AsyncFileHandler.encoding = UTF-8
42
434host-manager.org.apache.juli.AsyncFileHandler.level = ALL
444host-manager.org.apache.juli.AsyncFileHandler.directory = ${catalina.base}/logs
454host-manager.org.apache.juli.AsyncFileHandler.prefix = host-manager.
464host-manager.org.apache.juli.AsyncFileHandler.maxDays = 90
474host-manager.org.apache.juli.AsyncFileHandler.encoding = UTF-8
48
49java.util.logging.ConsoleHandler.level = ALL
50java.util.logging.ConsoleHandler.formatter = org.apache.juli.OneLineFormatter
51java.util.logging.ConsoleHandler.encoding = UTF-8
52
53
54############################################################
55# Facility specific properties.
56# Provides extra control for each logger.
57############################################################
58
59org.apache.catalina.core.ContainerBase.[Catalina].[localhost].level = INFO
60org.apache.catalina.core.ContainerBase.[Catalina].[localhost].handlers = 2localhost.org.apache.juli.AsyncFileHandler
61
62org.apache.catalina.core.ContainerBase.[Catalina].[localhost].[/manager].level = INFO
63org.apache.catalina.core.ContainerBase.[Catalina].[localhost].[/manager].handlers = 3manager.org.apache.juli.AsyncFileHandler
64
65org.apache.catalina.core.ContainerBase.[Catalina].[localhost].[/host-manager].level = INFO
66org.apache.catalina.core.ContainerBase.[Catalina].[localhost].[/host-manager].handlers = 4host-manager.org.apache.juli.AsyncFileHandler
67
68# For example, set the org.apache.catalina.util.LifecycleBase logger to log
69# each component that extends LifecycleBase changing state:
70#org.apache.catalina.util.LifecycleBase.level = FINE
71
72# To see debug messages for HTTP/2 handling, uncomment the following line:
73#org.apache.coyote.http2.level = FINE
74
75# To see debug messages for WebSocket handling, uncomment the following line:
76#org.apache.tomcat.websocket.level = FINE
Note: See TracBrowser for help on using the repository browser.