Scalr\Logger::warn PHP Method

warn() public method

Log a message with the WARN level.
public warn ( string $message, string $args = null )
$message string The message that accepts format
$args string optional An arguments
    public function warn($message, $args = null)
    {
        $args = func_get_args();
        array_unshift($args, self::LEVEL_WARN);
        call_user_func_array([$this, 'log'], $args);
    }