Skip to content

Commit

Permalink
Enable bale:info and bale:error logs by default
Browse files Browse the repository at this point in the history
  • Loading branch information
ManasJayanth committed May 28, 2024
1 parent a18f83b commit 469f09a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/logger/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ export const info = Debug("bale:info");
export const debug = Debug("bale:debug");
export const error = Debug("bale:error");

Debug.enable("bale:info,bale:error");

export function process(marker: string, output: ProcessOutput): void {
const debugO = Debug(`bale:${marker}:stdout`);
const debugE = Debug(`bale:${marker}:stderr`);
Expand Down

0 comments on commit 469f09a

Please sign in to comment.