blob: c1e21eba4ceb6156bd8b58889732f2937345dfee [file] [log] [blame]
package org.apache.commons.jcs.log;
import java.util.logging.Logger;
/*
* 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.
*/
/**
* This is a SPI factory implementation for java.util.logging
*/
public class JulLogFactory implements LogFactory
{
/**
* Return the name of the Log subsystem managed by this factory
*
* @return the name of the log subsystem
*/
@Override
public String getName()
{
return "jul";
}
/**
* Shutdown the logging system if the logging system supports it.
*/
@Override
public void shutdown()
{
// do nothing
}
/**
* Returns a Log using the fully qualified name of the Class as the Log
* name.
*
* @param clazz
* The Class whose name should be used as the Log name.
*
* @return The Log.
*/
@Override
public Log getLog(final Class<?> clazz)
{
Logger logger = Logger.getLogger(clazz.getName());
return new JulLogAdapter(logger);
}
/**
* Returns a Log with the specified name.
*
* @param name
* The logger name.
* @return The Log.
*/
@Override
public Log getLog(final String name)
{
Logger logger = Logger.getLogger(name);
return new JulLogAdapter(logger);
}
}