LoggerRoot.php 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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. /**
  23. */
  24. require_once(LOG4PHP_DIR . '/Logger.php');
  25. require_once(LOG4PHP_DIR . '/LoggerLevel.php');
  26. /**
  27. * The root logger.
  28. *
  29. * @author VxR <vxr@vxr.it>
  30. * @version $Revision: 1.1 $
  31. * @package log4php
  32. * @see Logger
  33. */
  34. class LoggerRoot extends Logger {
  35. /**
  36. * @var string name of logger
  37. */
  38. var $name = 'root';
  39. /**
  40. * @var object must be null for LoggerRoot
  41. */
  42. var $parent = null;
  43. /**
  44. * Constructor
  45. *
  46. * @param integer $level initial log level
  47. */
  48. function LoggerRoot($level = null)
  49. {
  50. $this->Logger($this->name);
  51. if ($level == null)
  52. $level = LoggerLevel::getLevelAll();
  53. $this->setLevel($level);
  54. }
  55. /**
  56. * @return integer the level
  57. */
  58. function getChainedLevel()
  59. {
  60. return $this->level;
  61. }
  62. /**
  63. * Setting a null value to the level of the root category may have catastrophic results.
  64. * @param LoggerLevel $level
  65. */
  66. function setLevel($level)
  67. {
  68. $this->level = $level;
  69. }
  70. /**
  71. * Please use setLevel() instead.
  72. * @param LoggerLevel $level
  73. * @deprecated
  74. */
  75. function setPriority($level)
  76. {
  77. $this->setLevel($level);
  78. }
  79. /**
  80. * Always returns false.
  81. * Because LoggerRoot has no parents, it returns false.
  82. * @param Logger $parent
  83. * @return boolean
  84. */
  85. function setParent($parent)
  86. {
  87. return false;
  88. }
  89. }
  90. ?>