Skip to content

Commit

Permalink
Merge pull request #1792 from riganti/fix-verbose-logging
Browse files Browse the repository at this point in the history
JS: Fix dotvvm verbose log
  • Loading branch information
tomasherceg committed Mar 8, 2024
2 parents 88ffbf6 + 5c45f5c commit 9b5f9dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Framework/Framework/Resources/Scripts/utils/logging.ts
Original file line number Diff line number Diff line change
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 9b5f9dd

Please sign in to comment.