HOME


5h-3LL 1.0
DIR: /usr/share/doc/cpanel-php84-log/examples
/usr/share/doc/cpanel-php84-log/examples/
Upload File:
Current File : /usr/share/doc/cpanel-php84-log/examples/firebug.php
<?php

require_once 'Log.php';

$logger = Log::singleton(
    'firebug',
    '',
    'PHP',
    ['buffering' => true],
    PEAR_LOG_DEBUG
);

for ($i = 0; $i < 10; $i++) {
    $logger->log("Log entry $i");
}