From 78df5ffd8efe6f72717efa630b22135b0b49a20a Mon Sep 17 00:00:00 2001 From: Andrew Seguin Date: Fri, 4 Apr 2025 05:45:03 -0600 Subject: [PATCH] refactor: remove extraneous log --- tools/extract-tokens/extract-tokens.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/tools/extract-tokens/extract-tokens.ts b/tools/extract-tokens/extract-tokens.ts index 122b1689af1f..7611a0851e55 100644 --- a/tools/extract-tokens/extract-tokens.ts +++ b/tools/extract-tokens/extract-tokens.ts @@ -97,7 +97,6 @@ function extractTokens(themePath: string): Token[] { // console in JSON format. This call captures it so it can be parsed. // Note: this is using the synchronous `compileString`, even though the Sass docs claim the async // version is faster. From local testing the synchronous version was faster (~2s versus ~5s). - console.error(pathToFileURL(absoluteThemePath)); compileString(toCompile, { loadPaths: [srcPath], url: pathToFileURL(absoluteThemePath),