Lines Matching defs:message
240 * Check if a message with the given level should be logged
254 * @param \Exception|string $error either an exception or an error message
289 * @param string $message
292 protected function logMessage($level, $message, array $context = array())
300 $message = $this->interpolate($message, $context);
304 $message = $info['icon'] . $message;
307 $this->colors->ptln($message, $info['color'], $info['channel']);
311 * Interpolates context values into the message placeholders.
313 * @param $message
317 protected function interpolate($message, array $context = array())
328 // interpolate replacement values into the message and return
329 return strtr((string)$message, $replace);