芝麻web文件管理V1.00
编辑当前文件:/home4/randall/public_html/sl/wp-content/plugins/cloudflare/src/Integration/DefaultLogger.php
debug = $debug; } /** * Logs with an arbitrary level. * * @param mixed $level * @param string $message * @param array $context */ public function log($level, $message, array $context = array()) { return error_log(self::PREFIX.' '.strtoupper($level).': '.$message.' '. (!empty($context) ? print_r($context, true) : '')); } /** * Detailed debug information. * * @param string $message * @param array $context */ public function debug($message, array $context = array()) { if ($this->debug) { return $this->log(LogLevel::DEBUG, $message, $context); } } }