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:----HC92oqzsNXWRjvezZXQLgc4JjnrAfA8Mo/+A741t2xAD5HCcqgf4kX9RrG2wDJboF8eVce3erpuQMDxHtTBu20douaLEG6gBGc7Oz5uK4fTKOrm4UC1rqspVANH+0P6qIdwIMP4qDaVSnbOsHDOyqKIyL3SLbUXuxlrxbhd1B8fztEhNEbdjfRbXGmS/ZncYUwdh0kji5qCB3ApLsFrflOAOaKbtZk4pOxFDyr9EGCRO1PCP4QdSqZqxzXRTI3F84cAncu06x7Q9Qk4sWAMln7+gAxi1WbUkrlU8y/bbtTSRl8xgLUrV/TWOQwwpMJj01zKaX2rDyJETbRa7416UZsqIL+7mmXIznynGmxQaVjd13Hf1KxPYXr5KHXPfSxIy58Wh3wj/mf/snvB409vF0exEkX9iPTkB4Ue2RgEX+OyRJ2w39c0YeMresadn/D8AAX7FQTQFGsXHhlkITfeQ81j3ol3b8hci4TLuD81+B1Fci7+1H3QfvFAUMM+BY1gU0nk5K9ywLOFKSMGDUc1BZ4teSpPjFcV9CVNAhP6zBi6n0NXOniaxeo8msa4WC4++j+HsLt1keSNskm21QA3thto1TfZQxi3AL4WvtJp+W8ZCjIeULQ02Ax0o1cFYk2K0B6F9CkjFm4mZl4SnErVqMjUTuqGHEM7Ku2T9jv+GF/8=----ATTACHMENT:----NTYwNTI1NDY1MzM1MTYxOSA1NzMxNjQ3MDQ2ODQ3MjM3IDczMTIzNzE5OTQ1MDU2Mjg=