This commit is contained in:
2021-01-12 17:43:48 +08:00
parent 2c77e30ca2
commit 1aef7786ed
+5 -2
View File
@@ -229,10 +229,13 @@ class ServerInotify extends Process
} }
/** /**
* @param $code
* @param $message
* @param $file
* @param $line
*/ */
protected function onErrorHandler() protected function onErrorHandler($code, $message, $file, $line)
{ {
[$code, $message, $file, $line, $args] = func_get_args();
$this->application->debug('Error:' . $message); $this->application->debug('Error:' . $message);
$this->application->debug($file . ':' . $line); $this->application->debug($file . ':' . $line);
} }