Bolt\Cron::notify PHP Method

notify() private method

If we're passed an OutputInterface, we're called from Nut and can notify the end user.
private notify ( string $message )
$message string
    private function notify($message)
    {
        if ($this->output !== null) {
            $this->output->writeln("<info>{$message}</info>");
        }
        $this->app['logger.system']->info($message, ['event' => 'cron']);
    }