chore: remove console.log

This commit is contained in:
Fredrik Burmester
2024-08-26 22:17:17 +02:00
parent bbc6f63089
commit 2565bf7353
11 changed files with 2 additions and 27 deletions

View File

@@ -41,8 +41,6 @@ export const reportPlaybackStopped = async ({
return;
}
console.log("reportPlaybackStopped ~", { sessionId, itemId });
try {
const url = `${api.basePath}/PlayingItems/${itemId}`;
const params = {

View File

@@ -52,7 +52,6 @@ export const postCapabilities = async ({
);
return d;
} catch (error: any | AxiosError) {
console.log("Failed to mark as not played", error);
throw new Error("Failed to mark as not played");
}
};