Sophie

Sophie

distrib > Mageia > 4 > i586 > by-pkgid > 3a649fa26de04b0283b9d5ebab66c377 > files > 11

php-analog-1.0.3-2.mga4.noarch.rpm

<?php

require '../lib/Analog.php';

Analog::handler (Analog\Handler\FirePHP::init ());

// debug-level message
Analog::log (array ('A debug message', __FILE__, __LINE__), Analog::DEBUG);

// an info message
Analog::log (array ('An error message', __FILE__, __LINE__), Analog::INFO);

// an error with no file/line #'s
Analog::log ('Another error message');

?>