diff --git a/lib/Controller/AOCSController.php b/lib/Controller/AOCSController.php index 54cd1411f..4f3d8720b 100644 --- a/lib/Controller/AOCSController.php +++ b/lib/Controller/AOCSController.php @@ -56,7 +56,7 @@ protected function handlePermissionError(PermissionError $e): DataResponse { * @return DataResponse */ protected function handleNotFoundError(NotFoundError $e): DataResponse { - $this->logger->warning('A not found error occurred: ['. $e->getCode() . ']' . $e->getMessage()); + $this->logger->info('A not found error occurred: ['. $e->getCode() . ']' . $e->getMessage()); return new DataResponse(['message' => $this->n->t('A not found error occurred. More details can be found in the logs. Please reach out to your administration.')], Http::STATUS_NOT_FOUND); }