LoggerBasicConfigurator.php 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. <?php
  2. /**
  3. * log4php is a PHP port of the log4j java logging package.
  4. *
  5. * <p>This framework is based on log4j (see {@link http://jakarta.apache.org/log4j log4j} for details).</p>
  6. * <p>Design, strategies and part of the methods documentation are developed by log4j team
  7. * (Ceki Gülcü as log4j project founder and
  8. * {@link http://jakarta.apache.org/log4j/docs/contributors.html contributors}).</p>
  9. *
  10. * <p>PHP port, extensions and modifications by VxR. All rights reserved.<br>
  11. * For more information, please see {@link http://www.vxr.it/log4php/}.</p>
  12. *
  13. * <p>This software is published under the terms of the LGPL License
  14. * a copy of which has been included with this distribution in the LICENSE file.</p>
  15. *
  16. * @package log4php
  17. */
  18. /**
  19. * @ignore
  20. */
  21. if (!defined('LOG4PHP_DIR')) define('LOG4PHP_DIR', dirname(__FILE__));
  22. require_once(LOG4PHP_DIR . '/spi/LoggerConfigurator.php');
  23. require_once(LOG4PHP_DIR . '/LoggerLayout.php');
  24. require_once(LOG4PHP_DIR . '/LoggerAppender.php');
  25. require_once(LOG4PHP_DIR . '/LoggerManager.php');
  26. /**
  27. * Use this class to quickly configure the package.
  28. *
  29. * <p>For file based configuration see {@link LoggerPropertyConfigurator}.
  30. * <p>For XML based configuration see {@link LoggerDOMConfigurator}.
  31. *
  32. * @author VxR <vxr@vxr.it>
  33. * @version $Revision: 1.1 $
  34. * @package log4php
  35. * @since 0.5
  36. */
  37. class LoggerBasicConfigurator extends LoggerConfigurator {
  38. function LoggerBasicConfigurator()
  39. {
  40. return;
  41. }
  42. /**
  43. * Add a {@link LoggerAppenderConsole} that uses
  44. * the {@link LoggerLayoutTTCC} to the root category.
  45. *
  46. * @param string $url not used here
  47. * @static
  48. */
  49. function configure($url = null)
  50. {
  51. $root =& LoggerManager::getRootLogger();
  52. $appender =& LoggerAppender::singleton('A1', 'LoggerAppenderConsole');
  53. $layout = LoggerLayout::factory('LoggerLayoutTTCC');
  54. $appender->setLayout($layout);
  55. $root->addAppender($appender));
  56. }
  57. /**
  58. * Reset the default hierarchy to its defaut.
  59. * It is equivalent to
  60. * <code>
  61. * LoggerManager::resetConfiguration();
  62. * </code>
  63. *
  64. * @see LoggerHierarchy::resetConfiguration()
  65. * @static
  66. */
  67. function resetConfiguration()
  68. {
  69. LoggerManager::resetConfiguration();
  70. }
  71. }
  72. ?>