From 64918e94f03fa6b0659059c916d39160921b2a84 Mon Sep 17 00:00:00 2001 From: Sosthene Date: Wed, 30 Jul 2025 13:04:59 +0200 Subject: [PATCH] Add verbosity --- src/app/api/notary/OfficeFolderAnchorsController.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/app/api/notary/OfficeFolderAnchorsController.ts b/src/app/api/notary/OfficeFolderAnchorsController.ts index 1ae9f9b1..1fa7e864 100644 --- a/src/app/api/notary/OfficeFolderAnchorsController.ts +++ b/src/app/api/notary/OfficeFolderAnchorsController.ts @@ -163,6 +163,8 @@ export default class OfficeFoldersController extends ApiController { const officeFolderFound: any = await this.officeFoldersService.getByUid(uid, query); + console.log(officeFolderFound); + if (!officeFolderFound) { this.httpNotFoundRequest(response, "Office folder not found"); return;