1 /* 2 * Copyright (C) The Apache Software Foundation. All rights reserved. 3 * 4 * This software is published under the terms of the Apache Software License 5 * version 1.1, a copy of which has been included with this distribution in 6 * the LICENSE.txt file. 7 */ 8 package org.apache.avalon.excalibur.logger; 9 10 import org.apache.log.LogTarget; 11 12 /** 13 * LogTargetManager Interface. 14 * 15 * @author <a HREF="mailto:giacomo@apache,org">Giacomo Pati</a> 16 * @version CVS $Revision: 1.2 $ $Date: 2001/12/11 09:53:29 $ 17 * @since 4.0 18 */ 19 public interface LogTargetManager 20 { 21 /** 22 * Find a logger based on a category name. 23 */ 24 LogTarget getLogTarget( String targetId ); 25 } 26