From 4a71c1950ffcfbf667776cb59371931650d0cfee Mon Sep 17 00:00:00 2001 From: MARCROCK22 <57925328+MARCROCK22@users.noreply.github.com> Date: Mon, 15 Apr 2024 21:25:41 -0400 Subject: [PATCH] fix: logs --- src/cache/adapters/limited.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/cache/adapters/limited.ts b/src/cache/adapters/limited.ts index 2e2773b..b6cb4a8 100644 --- a/src/cache/adapters/limited.ts +++ b/src/cache/adapters/limited.ts @@ -230,16 +230,11 @@ export class LimitedMemoryAdapter implements Adapter { removeToRelationship(to: string, keys: string | string[]) { const data = this.getToRelationship(to); - // console.log({ data, to }) if (data) { for (const key of Array.isArray(keys) ? keys : [keys]) { - // console.log(data, key, '????') const idx = data.indexOf(key); if (idx !== -1) { - console.log('borrado'); data.splice(idx, 1); - } else { - console.log({ to, keys }); } } }