_isEnabled = false; } } /** * Create a new instance of Zend_Log_Writer_ZendMonitor * * @param array|Zend_Config $config * @return Zend_Log_Writer_Syslog * @throws Zend_Log_Exception */ static public function factory($config) { return new self(); } /** * Is logging to this writer enabled? * * If the Zend Monitor extension is not enabled, this log writer will * fail silently. You can query this method to determine if the log * writer is enabled. * * @return bool */ public function isEnabled() { return $this->_isEnabled; } /** * Log a message to this writer. * * @param array $event log data event * @return void */ public function write($event) { if (!$this->isEnabled()) { return; } parent::write($event); } /** * Write a message to the log. * * @param array $event log data event * @return void */ protected function _write($event) { $priority = $event['priority']; $message = $event['message']; unset($event['priority'], $event['message']); if (!empty($event)) { monitor_custom_event($priority, $message, $event); } else { monitor_custom_event($priority, $message); } } }