Pop\Log\Logger::alert PHP Method

alert() public method

Method to add an ALERT log entry
public alert ( mixed $message, array $options = [] ) : Logger
$message mixed
$options array
return Logger
    public function alert($message, array $options = array())
    {
        return $this->log(self::ALERT, $message, $options);
    }

Usage Example

Esempio n. 1
0
 public function testAlert()
 {
     $l = new Logger(new File(__DIR__ . '/../tmp/app.log'));
     $l->alert('Test log message');
     $this->assertTrue(file_exists(__DIR__ . '/../tmp/app.log'));
     $this->assertGreaterThan(0, filesize(__DIR__ . '/../tmp/app.log'));
     unlink(__DIR__ . '/../tmp/app.log');
 }
All Usage Examples Of Pop\Log\Logger::alert