inherited. * {@link LOG4PHP_LOGGER_CONFIGURATOR_NULL} is a synonym. */ define('LOG4PHP_LOGGER_CONFIGURATOR_INHERITED', 'inherited'); /** * Special level signifying inherited behaviour, same as * {@link LOG4PHP_LOGGER_CONFIGURATOR_INHERITED}. * The current value of this string constant is null. */ define('LOG4PHP_LOGGER_CONFIGURATOR_NULL', 'null'); /** * Implemented by classes capable of configuring log4php using a URL. * * @author Marco Vassura * @version $Revision: 635069 $ * @package log4php * @subpackage spi */ interface LoggerConfigurator { /** * Interpret a resource pointed by a url and configure accordingly. * * The configuration is done relative to the repository * parameter. * * @param string $url The URL to parse */ public static function configure($url=null); }