public function log ($level, $message, array $context = array())
57
{
58
3
if (!is_null($this->output))
59
3
{
60
3
$this->logger->log($level, $message, $context);
61
3
}
62
3
}
63
64
/**
65
* Writes a message to the output and adds a newline at the end.
66
*
67
* @param string|array $messages The message as an array of lines of a single string
68
* @param int $options A bitmask of options (one of the OUTPUT or VERBOSITY constants), 0 is considered the same as self::OUTPUT_NORMAL | self::VERBOSITY_NORMAL