Lines Matching defs:context
18 * @param array $context
22 public function emergency($message, array $context = array())
24 $this->log(LogLevel::EMERGENCY, $message, $context);
34 * @param array $context
38 public function alert($message, array $context = array())
40 $this->log(LogLevel::ALERT, $message, $context);
49 * @param array $context
53 public function critical($message, array $context = array())
55 $this->log(LogLevel::CRITICAL, $message, $context);
63 * @param array $context
67 public function error($message, array $context = array())
69 $this->log(LogLevel::ERROR, $message, $context);
79 * @param array $context
83 public function warning($message, array $context = array())
85 $this->log(LogLevel::WARNING, $message, $context);
92 * @param array $context
96 public function notice($message, array $context = array())
98 $this->log(LogLevel::NOTICE, $message, $context);
107 * @param array $context
111 public function info($message, array $context = array())
113 $this->log(LogLevel::INFO, $message, $context);
120 * @param array $context
124 public function debug($message, array $context = array())
126 $this->log(LogLevel::DEBUG, $message, $context);