From a47105ac38273492fc116d08274198684918bf84 Mon Sep 17 00:00:00 2001 From: Valeriy Grechukha Date: Sat, 8 Mar 2025 00:41:49 +0300 Subject: [PATCH] Adapting logs for monitoring (sentry-like) --- src/Concerns/ProcessHooks.php | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/src/Concerns/ProcessHooks.php b/src/Concerns/ProcessHooks.php index 5c1a3a9..23764d2 100644 --- a/src/Concerns/ProcessHooks.php +++ b/src/Concerns/ProcessHooks.php @@ -37,7 +37,9 @@ private function preCreate(TusHookInput $payload) $upload = $this->uploads->findByUploadRequestAndToken($requestId, $token); if(is_null($upload)){ - Log::info("Upload identified by {$requestId}-{$token} not existing."); + Log::info("Upload not existing.", [ + 'identifier' => "{$requestId}-{$token}", + ]); throw new Exception('Upload not found, continuation not granted'); } @@ -98,7 +100,9 @@ private function postFinish(TusHookInput $payload) $upload = $this->uploads->findByUploadRequestAndToken($requestId, $token); if(is_null($upload)){ - Log::error("Tus post finish, upload {$requestId}-{$token} not found."); + Log::error("Tus post finish, upload not found.", [ + 'identifier' => "{$requestId}-{$token}", + ]); return false; } @@ -124,7 +128,9 @@ private function postTerminate(TusHookInput $payload) $upload = $this->uploads->findByUploadRequestAndToken($requestId, $token); if(is_null($upload)){ - Log::error("Upload {$requestId}-{$token} not found."); + Log::error("Upload not found.", [ + 'identifier' => "{$requestId}-{$token}", + ]); return false; }