From ac785a1b4f44e52f23c285d0f5d8b6bbe7efdeb7 Mon Sep 17 00:00:00 2001 From: Carl Schwan Date: Thu, 30 Apr 2026 14:00:01 +0200 Subject: [PATCH] fix: Make preview timeout an info log instead of error Align with the similar error message in in lib/Preview/Office.php Signed-off-by: Carl Schwan --- lib/Service/RemoteService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Service/RemoteService.php b/lib/Service/RemoteService.php index 6b8c5cc693..02d2788c8b 100644 --- a/lib/Service/RemoteService.php +++ b/lib/Service/RemoteService.php @@ -100,7 +100,7 @@ public function convertTo(string $filename, $stream, string $format, ?array $con return $body; } catch (\Exception $e) { - $this->logger->error('Failed to convert preview: ' . $e->getMessage(), ['exception' => $e]); + $this->logger->info('Failed to convert preview: ' . $e->getMessage(), ['exception' => $e]); throw $e; } }