File: syslog.php

package info (click to toggle)
php-log 1.13.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 496 kB
  • sloc: php: 1,917; xml: 593; makefile: 11; sql: 8
file content (8 lines) | stat: -rw-r--r-- 156 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
<?php

require_once 'Log.php';

$logger = &Log::singleton('syslog', LOG_LOCAL0, 'ident');
for ($i = 0; $i < 10; $i++) {
    $logger->log("Log entry $i");
}