diff options
author | ChrisEric1 CECL <christopherericlentocha@gmail.com> | 2022-08-06 16:42:55 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-06 16:42:55 -0400 |
commit | 2ef49012b862f98f15414d06b4ef6209b01cf766 (patch) | |
tree | a03c8c2aab1b48dc2eada5d6885b79c2ee3d20a8 | |
parent | Fix Missing Directory: preload-plugins (diff) | |
download | server-2ef49012b862f98f15414d06b4ef6209b01cf766.tar.xz |
Remove: console.log(`CACHE MISS! Asset file: x`);
-rw-r--r-- | api/src/middlewares/TestClient.ts | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/api/src/middlewares/TestClient.ts b/api/src/middlewares/TestClient.ts index 7292868c..466d4bcc 100644 --- a/api/src/middlewares/TestClient.ts +++ b/api/src/middlewares/TestClient.ts @@ -40,7 +40,6 @@ export default function TestClient(app: Application) { }); } else { - console.log(`CACHE MISS! Asset file: ${req.params.file}`); response = await fetch(`https://discord.com/assets/${req.params.file}`, { agent, // @ts-ignore @@ -144,4 +143,4 @@ function stripHeaders(headers: Headers): Headers { headers.delete(headerName); }); return headers; -} \ No newline at end of file +} |