fix(store): remove debug logging of requests (#9093)

[fix(store): remove debug logging of
requests](bb13c864f0)

Remove this stuff:

![Screenshot 2024-12-20 at 09 50
26](https://github.com/user-attachments/assets/b178305b-31eb-4571-8762-6ac8f115eb17)
This commit is contained in:
Swifty 2024-12-20 10:26:31 +01:00 committed by GitHub
parent e33864f5ed
commit 44722c4b39
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -451,16 +451,6 @@ export default class BackendAPI {
await new Promise((resolve) => setTimeout(resolve, 100 * retryCount));
}
}
console.log("Request: ", method, path, "from: ", page);
if (token === "no-token-found") {
console.warn(
"No auth token found after retries. This may indicate a session sync issue between client and server.",
);
console.debug("Last session attempt:", retryCount);
} else {
console.log("Auth token found");
}
console.log("--------------------------------");
let url = this.baseUrl + path;
const payloadAsQuery = ["GET", "DELETE"].includes(method);