Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie

Tomcat's catalina.out logging

  • 13-04-2011 11:13pm
    #1
    Registered Users, Registered Users 2 Posts: 8,584 ✭✭✭


    I've got an out of the box Tomcat 5.5 setup, apparently using JULI to log everything because I haven't touched log4j. It has the default logging.properties file that defines the handlers.
    
    # Licensed to the Apache Software Foundation (ASF) under one or more
    # contributor license agreements.  See the NOTICE file distributed with
    # this work for additional information regarding copyright ownership.
    # The ASF licenses this file to You under the Apache License, Version 2.0
    # (the "License"); you may not use this file except in compliance with
    # the License.  You may obtain a copy of the License at
    #
    #     http://www.apache.org/licenses/LICENSE-2.0
    #
    # Unless required by applicable law or agreed to in writing, software
    # distributed under the License is distributed on an "AS IS" BASIS,
    # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    handlers = 1catalina.org.apache.juli.FileHandler, 2localhost.org.apache.juli.FileHandler, 3manager.org.apache.juli.FileHandler, 4admin.org.apache.juli.FileHandler, 5host-manager.org.apache.juli.FileHandler, java.util.logging.ConsoleHandler
    
    .handlers = 1catalina.org.apache.juli.FileHandler, java.util.logging.ConsoleHandler
    
    ############################################################
    # Handler specific properties.
    # Describes specific configuration info for Handlers.
    ############################################################
    
    1catalina.org.apache.juli.FileHandler.level = FINE
    1catalina.org.apache.juli.FileHandler.directory = ${catalina.base}/logs
    1catalina.org.apache.juli.FileHandler.prefix = catalina.
    
    2localhost.org.apache.juli.FileHandler.level = FINE
    2localhost.org.apache.juli.FileHandler.directory = ${catalina.base}/logs
    2localhost.org.apache.juli.FileHandler.prefix = localhost.
    
    3manager.org.apache.juli.FileHandler.level = FINE
    3manager.org.apache.juli.FileHandler.directory = ${catalina.base}/logs
    3manager.org.apache.juli.FileHandler.prefix = manager.
    
    4admin.org.apache.juli.FileHandler.level = FINE
    4admin.org.apache.juli.FileHandler.directory = ${catalina.base}/logs
    4admin.org.apache.juli.FileHandler.prefix = admin.
    
    5host-manager.org.apache.juli.FileHandler.level = FINE
    5host-manager.org.apache.juli.FileHandler.directory = ${catalina.base}/logs
    5host-manager.org.apache.juli.FileHandler.prefix = host-manager.
    
    ############################################################
    # Facility specific properties.
    # Provides extra control for each logger.
    ############################################################
    
    org.apache.catalina.core.ContainerBase.[Catalina].[localhost].level = INFO
    org.apache.catalina.core.ContainerBase.[Catalina].[localhost].handlers = 2localhost.org.apache.juli.FileHandler
    
    org.apache.catalina.core.ContainerBase.[Catalina].[localhost].[/manager].level = INFO
    org.apache.catalina.core.ContainerBase.[Catalina].[localhost].[/manager].handlers = 3manager.org.apache.juli.FileHandler
    
    org.apache.catalina.core.ContainerBase.[Catalina].[localhost].[/admin].level = INFO
    org.apache.catalina.core.ContainerBase.[Catalina].[localhost].[/admin].handlers = 4admin.org.apache.juli.FileHandler
    
    org.apache.catalina.core.ContainerBase.[Catalina].[localhost].[/host-manager].level = INFO
    org.apache.catalina.core.ContainerBase.[Catalina].[localhost].[/host-manager].handlers = 5host-manager.org.apache.juli.FileHandler
    
    # For example, set the com.xyz.foo logger to only log SEVERE
    # messages
    #org.apache.catalina.startup.ContextConfig.level = FINE
    #org.apache.catalina.startup.HostConfig.level = FINE
    #org.apache.catalina.session.ManagerBase.level = FINE
    

    Everything I've read indicates that to stop it logging I simply either change java.util.logging.ConsoleHandler.level to SEVERE, WARN or something else. Or I remove the handler. The thing is, none of these handlers are responsible for catalina.out - catalina.out is wrote to by the catalina.sh script (i.e. the script you run to start tomcat). I can't find anything on how to lower the log level for catalina.out - It's currently set to at least DEBUG.

    I could logrotate the file, or change the bits in catalina.sh to output to /dev/null but I'd rather try address the problem if possible


Comments

  • Registered Users, Registered Users 2 Posts: 8,584 ✭✭✭TouchingVirus


    Eugh, fixed now.

    Didn't realise you could deploy apps that use different logging systems (e.g. log4j) and they would output to stderr, completely skipping over Tomcat's logging settings.

    Catalina.out is much less cluttered now, am happy.

    Sorry mods, couldn't delete thread and I'm not a fan of when the first post is edited with "delete me" :)


Advertisement