Skip to content

Commit

Permalink
FIXUP: only debug
Browse files Browse the repository at this point in the history
  • Loading branch information
gnikit committed Mar 23, 2024
1 parent 7e45625 commit c1721e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/logging.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ export class Logger {
const title = new Date().toLocaleTimeString();
const formattedMessage = `[${LogLevel[level]} - ${title}] ${message}`;
this.channel.appendLine(formattedMessage);
console.log(formattedMessage); // useful for CI debugging
console.debug(formattedMessage); // useful for CI debugging
}
}

Expand Down

0 comments on commit c1721e1

Please sign in to comment.