From 94ff383a86cb271b71db362e90b1484d34a9dca3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=90=91=E6=9E=97?= Date: Fri, 11 Aug 2023 09:40:06 +0800 Subject: [PATCH] qqq --- function.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/function.php b/function.php index e3b285e5..1042b106 100644 --- a/function.php +++ b/function.php @@ -871,6 +871,9 @@ if (!function_exists('error')) { */ function error(mixed $message, array $method = []): void { + if (is_string($message) && str_contains($message, 'inotify_rm_watch(): The file descriptor is not an inotify instance or the watch descriptor')) { + return; + } Kiri::getLogger()->failure($message); } }