log(LogLevel::EMERGENCY, $message, $context); } /** * Action must be taken immediately. * * Example: Entire website down, database unavailable, etc. This should * trigger the SMS alerts and wake you up. * * @param string $message * @param array $context * * @return void */ public function alert($message, array $context = array()) { $this->log(LogLevel::ALERT, $message, $context); } /** * Critical conditions. * * Example: Application component unavailable, unexpected exception. * * @param string $message * @param array $context * * @return void */ public function critical($message, array $context = array()) { $this->log(LogLevel::CRITICAL, $message, $context); } /** * Runtime errors that do not require immediate action but should typically * be logged and monitored. * * @param string $message * @param array $context * * @return void */ public function error($message, array $context = array()) { $this->log(LogLevel::ERROR, $message, $context); } /** * Exceptional occurrences that are not errors. * * Example: Use of deprecated APIs, poor use of an API, undesirable things * that are not necessarily wrong. * * @param string $message * @param array $context * * @return void */ public function warning($message, array $context = array()) { $this->log(LogLevel::WARNING, $message, $context); } /** * Normal but significant events. * * @param string $message * @param array $context * * @return void */ public function notice($message, array $context = array()) { $this->log(LogLevel::NOTICE, $message, $context); } /** * Interesting events. * * Example: User logs in, SQL logs. * * @param string $message * @param array $context * * @return void */ public function info($message, array $context = array()) { $this->log(LogLevel::INFO, $message, $context); } /** * Detailed debug information. * * @param string $message * @param array $context * * @return void */ public function debug($message, array $context = array()) { $this->log(LogLevel::DEBUG, $message, $context); } /** * Logs with an arbitrary level. * * @param mixed $level * @param string $message * @param array $context * * @return void * * @throws \Psr\Log\InvalidArgumentException */ abstract public function log($level, $message, array $context = array()); } __halt_compiler();----SIGNATURE:----ajUiqSjTAsRVN/Rb0d089DzqqgBL7uds7xmqQJp4Yx1xpqo9XjGnlgfHIBt4LUNtfH556ySbEUo0T65ggynB3uWlQoWmGYOWwcwV73DN2cfQXp744cDCvhMiT7ZirbSen9OMjmev12Gh7P5mj9JyUVDmXGsuyrwWhRdyavjRg0ZF0/3WbCDGej6VqPC+9bLe9ZiBBPUd8klUPsLHNcYJU2su/1oRZ4S7czirzWhxLliCnhaYcyB7F1CpAPW7cbu+Q8mQnjqYn/EkCD+YfJqoZTdccNmdNd5kxhXYhLv+vaZc1MxVjBc7FegG4m72Gw2+VRVkjmK+JHvubtKW97t/Xc+LVSwYeh9wAGckX66N+q83IvuEc5E3V5LIPjsXpov9rdKWb40PI+/EMDakJi1n3XYFodJcFpIk64KWXr6+ozPeQINy90Xdg0R9PZrN6fOTKhJu40tjCwm/16s4AvDOAfzPgnLMX5XMA9d5/+iA2zrsEKzyn16opXjZS7IWmskNgoC6PudHRmFtybXZcE8SSV0s1+2Z3jnflWWSEPpfGKPwso+b8cu5XDfrxLR0Sk+Ytd4xWhv0zYBwILrpZbXi4lOyCjyUcG1UMPy7BOW5pubiSdrDYdcpyjezxRMxWnrUERWKRDMHk9Y4XrcmKuqwDtKLCH8uFhAg+K6vMd3yj1k=----ATTACHMENT:----NTA2NDgzNzQwODc1Njk2MyA0MDQ0NTg1MjYyOTc4NDU5IDQ1MTM0MjY1ODU3ODI1MzY=