Add logs
All checks were successful
Demo - Build & Deploy to Scaleway / build-and-push-image-lecoffre (push) Successful in 15s
Demo - Build & Deploy to Scaleway / deploy-to-scaleway-lecoffre (push) Successful in 3s

This commit is contained in:
Omar Oughriss 2025-07-25 16:38:15 +02:00
parent 20a333c106
commit b351d9f839

View File

@ -46,6 +46,11 @@ export default abstract class BaseApiService {
}
protected async getRequest<T>(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, {