File: display.php

package info (click to toggle)
php-log 1.12.0-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 460 kB
  • ctags: 605
  • sloc: php: 1,859; xml: 423; sql: 8; makefile: 5
file content (10 lines) | stat: -rw-r--r-- 280 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
<?php

require_once 'Log.php';

$conf = array('error_prepend' => '<font color="#ff0000"><tt>',
              'error_append'  => '</tt></font>');
$logger = &Log::singleton('display', '', '', $conf, PEAR_LOG_DEBUG);
for ($i = 0; $i < 10; $i++) {
    $logger->log("Log entry $i");
}