Lines Matching defs:context
19 * @param array $context
23 public function emergency($message, array $context = array())
25 $this->log('emergency', $message, $context);
35 * @param array $context
37 public function alert($message, array $context = array())
39 $this->log('alert', $message, $context);
48 * @param array $context
50 public function critical($message, array $context = array())
52 $this->log('critical', $message, $context);
60 * @param array $context
62 public function error($message, array $context = array())
64 $this->log('error', $message, $context);
74 * @param array $context
76 public function warning($message, array $context = array())
78 $this->log('warning', $message, $context);
87 * @param array $context
89 public function notice($message, array $context = array())
91 $this->log('notice', $message, $context);
100 * @param array $context
102 public function info($message, array $context = array())
104 $this->log('info', $message, $context);
111 * @param array $context
113 public function debug($message, array $context = array())
115 $this->log('debug', $message, $context);
121 * @param array $context
123 public function log($level, $message, array $context = array())
125 $this->logMessage($level, $message, $context);