From 711d31b56536650c252e37d9a303c19c534fa408 Mon Sep 17 00:00:00 2001 From: fogelito Date: Tue, 2 Sep 2025 13:48:17 +0300 Subject: [PATCH] Console::error message fix --- src/Appwrite/Platform/Workers/Audits.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Appwrite/Platform/Workers/Audits.php b/src/Appwrite/Platform/Workers/Audits.php index 7316f5c8a9..a88e2e641f 100644 --- a/src/Appwrite/Platform/Workers/Audits.php +++ b/src/Appwrite/Platform/Workers/Audits.php @@ -142,7 +142,7 @@ class Audits extends Action Console::success('Audit logs processed successfully'); } catch (Throwable $e) { - Console::error('Error processing audit logs for Project "' . $projectDocument->getSequence() . '": ' . $e->getMessage()); + Console::error('Error processing audit logs for Project "' . $sequence . '": ' . $e->getMessage()); } finally { unset($this->logs[$sequence]); }