From b23c48246d05007000f808ecc55c8a990e5ea6e2 Mon Sep 17 00:00:00 2001 From: Rainnny7 Date: Sun, 13 Oct 2024 20:43:02 -0400 Subject: [PATCH] remove debug Took 41 seconds --- src/lib/mdx.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/lib/mdx.ts b/src/lib/mdx.ts index d2d2f3d..60dd198 100644 --- a/src/lib/mdx.ts +++ b/src/lib/mdx.ts @@ -38,7 +38,6 @@ const UPDATE_INTERVAL_MS: number = 10 * 60 * 1000; // 10 minutes in milliseconds * If it's a Git URL, clone it to a cache directory and reuse it. */ const getDocsDirectory = cache(async (): Promise => { - console.log("retrieve docs dir"); if (isGitUrl(DOCS_DIR)) { const repoHash: string = Buffer.from(DOCS_DIR).toString("base64"); // Create a unique identifier based on the repo URL const cacheDir: string = path.join(os.tmpdir(), "docs_cache", repoHash);