luya\console\Command::verbosePrint PHP Method

verbosePrint() public method

Method to print informations directly when verbose is enabled.
public verbosePrint ( string $message, string $section = null )
$message string
$section string
    public function verbosePrint($message, $section = null)
    {
        if ($this->verbose) {
            $this->output(!empty($section) ? $section . ': ' . $message : $message);
        }
    }