This commit is contained in:
2020-09-07 13:40:35 +08:00
parent a3b24ad443
commit 3f0ee72b29
+2 -1
View File
@@ -200,7 +200,8 @@ class ServerInotify extends Process
*/ */
protected function onErrorHandler() protected function onErrorHandler()
{ {
$this->debug(var_export(func_get_args(), true)); [$code, $message, $file, $line, $args] = func_get_args();
$this->debug($message . ' ' . $file . ':' . $line);
} }