Components_Output::warn PHP Method

warn() public method

public warn ( $text )
    public function warn($text)
    {
        if ($this->_quiet) {
            return;
        }
        $this->_cli->message($text, $this->_getType('cli.warning'));
    }