Skip to content

Commit ed4eae8

Browse files
authored
Merge branch 'main' into 09-04-feat_inline_css_variables
2 parents 6496413 + d48061c commit ed4eae8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/compiler/compiler.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ export function compile(code: Buffer | string, options: CompilerOptions = {}) {
124124
if (isLoggerEnabled) {
125125
const MAX_LOG_SIZE = 100 * 1024; // 100KB
126126
if (firstPass.length <= MAX_LOG_SIZE) {
127-
console.log(firstPass.toString());
127+
logger(firstPass.toString());
128128
} else {
129129
logger(
130130
`firstPass buffer too large to log in full (${firstPass.length} bytes). Preview: ` +

0 commit comments

Comments
 (0)