pearLogger = Log::singleton("file", "/tmp/pear.log", "SYSAL"); } function log( $comp, $string ) { $this->pearLogger->info("$comp : $string\n"); } function logException( $comp, Exception $e ) { $this->pearLogger->err( "$comp : " . $e->getMessage() ); $this->pearLogger->err( "$comp : " . $e->getTraceAsString() ); } } ?>