/[cvs]/nfo/php/libs/org.netfrag.glib/Class/Logger.php
ViewVC logotype

Diff of /nfo/php/libs/org.netfrag.glib/Class/Logger.php

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.9 by joko, Thu Mar 27 15:59:55 2003 UTC revision 1.11 by joko, Fri Mar 28 06:44:20 2003 UTC
# Line 17  Line 17 
17   *  $Id$   *  $Id$
18   *   *
19   *  $Log$   *  $Log$
20     *  Revision 1.11  2003/03/28 06:44:20  joko
21     *  VERBOSE mode
22     *
23     *  Revision 1.10  2003/03/28 03:04:26  joko
24     *  enhanced conditions for debugging
25     *
26   *  Revision 1.9  2003/03/27 15:59:55  joko   *  Revision 1.9  2003/03/27 15:59:55  joko
27   *  enhanced 'function log'   *  enhanced 'function log'
28   *   *
# Line 103  class Class_Logger extends Class_Abstrac Line 109  class Class_Logger extends Class_Abstrac
109      $this->_init_logger($logfile, 1);      $this->_init_logger($logfile, 1);
110    }    }
111    
112    
113    // TODO: split by loglevel here to make seperated logfiles possible (debug, normal, errors)    // TODO: split by loglevel here to make seperated logfiles possible (debug, normal, errors)
114    // TODO: optional: transmit logging messages via tcp - don't write them to disk (a handler for PEAR::Log)    // TODO: optional: transmit logging messages via tcp - don't write them to disk (a handler for PEAR::Log)
115    function log($msg, $level = PEAR_LOG_DEBUG) {    function log($msg, $level = PEAR_LOG_DEBUG) {
# Line 114  class Class_Logger extends Class_Abstrac Line 121  class Class_Logger extends Class_Abstrac
121        //print "error-message: $msg<br>";        //print "error-message: $msg<br>";
122      }      }
123            
124      //$precon = 1;      // TODO: modify this condition: make it more flexible: introduce '$this->ERRORS_STDOUT' or s.th.l.th.
125      $precon = $this->DEBUG;      //$debug_condition = $this->DEBUG || $level <= PEAR_LOG_WARNING;
126      if ($precon && $level && $level <= PEAR_LOG_WARNING) {      $debug_condition = $this->DEBUG;
127        //$error_condition = $level <= PEAR_LOG_ERR;
128        $error_condition = $level <= PEAR_LOG_WARNING;
129        
130        $label = 'Unknown'; $color = 'black';
131        if ($debug_condition) { $label = 'Debug'; $color = 'darkgreen'; }
132        if ($error_condition) { $label = 'Error'; $color = 'red'; }
133        
134        $stdout_condition = constants::get('VERBOSE') && $level && ($debug_condition || $error_condition);
135        if ($stdout_condition) {
136          // TODO: what now?
137        //user_error($msg);        //user_error($msg);
138        print "<b>Error[$level]</b>: $msg<br/>";        //print "<div><span style=\"color: $color;\"><b>$label</b></span>[$level]: <i>$msg</i></div>";
139          $style = html_style("text/css", '.boxlabel_red { color: red; font-weight:bold; }');
140          $box = html_span();
141          //$box->set_style("border-bottom: 1px solid black;");
142          $box->add( html_span('boxlabel_red', $label), "[$level]: $msg", html_br() );
143          print $style->render();
144          print $box->render();
145      }      }
146            
147    }    }

Legend:
Removed from v.1.9  
changed lines
  Added in v.1.11

MailToCvsAdmin">MailToCvsAdmin
ViewVC Help
Powered by ViewVC 1.1.26 RSS 2.0 feed