Ejemplo n.º 1
0
 function testJsonAccess()
 {
     self::assertFalse(file_exists(U_Logger::$LOG_FILE_PATH));
     U_Logger::log('Testing');
     self::assertTrue(file_exists(U_Logger::$LOG_FILE_PATH));
 }
Ejemplo n.º 2
0
function exceptionHandler($exception)
{
    U_Logger::log($exception->getMessage(), PEAR_LOG_ALERT);
}