/**
  * Configure the default repository using the resource pointed by <b>url</b>.
  * <b>Url</b> is any valid resurce as defined in {@link PHP_MANUAL#file} function.
  * Note that the resource will be search with <i>use_include_path</i> parameter 
  * set to "1".
  *
  * @param string $url
  * @return boolean configuration result
  * @static
  */
 function configure($url = '')
 {
     $configurator = new LoggerPropertyConfigurator();
     $repository =& LoggerManager::getLoggerRepository();
     return $configurator->doConfigure($url, $repository);
 }