Pop\Log\Logger::warn PHP Method

warn() public method

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

Usage Example

Example #1
0
 public function testWarn()
 {
     $l = new Logger(new File(__DIR__ . '/../tmp/app.log'));
     $l->warn('Test log message');
     $this->assertTrue(file_exists(__DIR__ . '/../tmp/app.log'));
     $this->assertGreaterThan(0, filesize(__DIR__ . '/../tmp/app.log'));
     unlink(__DIR__ . '/../tmp/app.log');
 }