From b351d9f8396d7ec56d8b6712583af3e93f45372b Mon Sep 17 00:00:00 2001 From: Omar Oughriss Date: Fri, 25 Jul 2025 16:38:15 +0200 Subject: [PATCH] Add logs --- src/front/Api/BaseApiService.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/front/Api/BaseApiService.ts b/src/front/Api/BaseApiService.ts index 01ad7443..f5f90f4d 100644 --- a/src/front/Api/BaseApiService.ts +++ b/src/front/Api/BaseApiService.ts @@ -46,6 +46,11 @@ export default abstract class BaseApiService { } protected async getRequest(url: URL, token?: string, contentType?: ContentType, ref?: IRef, fileName?: string) { + console.log("url", url); + console.log("token", token); + console.log("contentType", contentType); + console.log("ref", ref); + console.log("fileName", fileName); await this.checkJwtToken(); const request = async () => await fetch(url, {