From 80be9b357f23a058cf97af6eb0cf093afa871ca7 Mon Sep 17 00:00:00 2001 From: jaredvu Date: Mon, 28 Aug 2023 21:18:30 -0700 Subject: [PATCH] remove console.log --- src/lib/abacus/filesystem.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/lib/abacus/filesystem.ts b/src/lib/abacus/filesystem.ts index 7404f7b..ab52fa1 100644 --- a/src/lib/abacus/filesystem.ts +++ b/src/lib/abacus/filesystem.ts @@ -3,7 +3,6 @@ import { DEV_ENDPOINTS, ENDPOINTS } from '@dydxprotocol/v4-localization'; class AbacusFileSystem implements AbacusFileSystemProtocol { readTextFile(location: FileLocation, path: string): Nullable { - console.log({ location, path }); if (path === 'config/staging/environments.json') { const environments = import.meta.env.MODE === 'production' ? ENDPOINTS : DEV_ENDPOINTS; return JSON.stringify(environments);