Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > 04cc76e487e90e9c347b4c0ca08ba2e0 > files > 3

php-pear-Log-1.12.7-3.mga4.noarch.rpm

<?php

require_once 'Log.php';

$console = &Log::singleton('console', '', 'TEST');
$file = &Log::singleton('file', 'out.log', 'TEST');

$composite = &Log::singleton('composite');
$composite->addChild($console);
$composite->addChild($file);

$composite->log('This event will be logged to both handlers.');