1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <?php
- namespace OSInet\Class_Grapher;
- class Logger {
- public $fDebugLevel;
- public function __construct($debugLevel = LOG_WARNING) {
- $this->debugLevel($debugLevel);
- }
-
- public function debugLevel($level = NULL) {
- $ret = $this->fDebugLevel;
- if (isset($level)) {
- if ($level < LOG_EMERG) {
- $level = LOG_EMERG;
- }
- if ($level > LOG_DEBUG) {
- $level = LOG_DEBUG;
- }
- $this->fDebugLevel = $level;
- }
- return $ret;
- }
-
- public function debug($message = "\n", $level = LOG_INFO) {
- if ($level <= $this->fDebugLevel) {
- fputs(STDERR, $message);
- fflush(STDERR);
- }
- }
- }
|