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, {