Cake\Console\Shell::verbose PHP Method

verbose() public method

Output at the verbose level.
public verbose ( string | array $message, integer $newlines = 1 ) : integer | boolean
$message string | array A string or an array of strings to output
$newlines integer Number of newlines to append
return integer | boolean The number of bytes returned from writing to stdout.
    public function verbose($message, $newlines = 1)
    {
        return $this->_io->verbose($message, $newlines);
    }