Scalr\Logger::debug PHP Method

debug() public method

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