Skip to content

Commit

Permalink
JS: Fix dotvvm verbose log
Browse files Browse the repository at this point in the history
  • Loading branch information
exyi committed Mar 18, 2024
1 parent 265b8fe commit 3eb97dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Framework/Framework/Resources/Scripts/utils/logging.ts
Expand Up @@ -21,7 +21,7 @@ export type DotvvmLoggingArea = (

export function logInfoVerbose(area: DotvvmLoggingArea, ...args: any[]) {
if (compileConstants.debug && level === "verbose") {
console.log(`%c${area}`, ...args);
console.log(area, ...args);
}
}

Expand Down

0 comments on commit 3eb97dd

Please sign in to comment.