Skip to content

Commit

Permalink
fix: Console
Browse files Browse the repository at this point in the history
Update Console.mjs
  • Loading branch information
VirgilClyne committed Dec 10, 2024
1 parent d643a12 commit 8e2fb4d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions polyfill/Console.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export class Console {
Console.log(...msg);
}

static #level = 2;
static #level = 3;

static get logLevel() {
switch (Console.#level) {
Expand All @@ -77,9 +77,9 @@ export class Console {
case 1:
return "ERROR";
case 2:
default:
return "WARN";
case 3:
default:
return "INFO";
case 4:
return "DEBUG";
Expand Down

0 comments on commit 8e2fb4d

Please sign in to comment.