home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2005 June / PCpro_2005_06.ISO / files / opensource / xamp / xampp-win32.exe / xampp / composite.php < prev    next >
Encoding:
PHP Script  |  2004-10-01  |  305 b   |  13 lines

  1. <?php
  2.  
  3. require_once 'Log.php';
  4.  
  5. $console = &Log::singleton('console', '', 'TEST');
  6. $file = &Log::singleton('file', 'out.log', 'TEST');
  7.  
  8. $composite = &Log::singleton('composite');
  9. $composite->addChild($console);
  10. $composite->addChild($file);
  11.  
  12. $composite->log('This event will be logged to both handlers.');
  13.