Skip to content

Commit

Permalink
fix(logging): force color in DingzLogger
Browse files Browse the repository at this point in the history
- force color of dingz name
- *might* break things
  • Loading branch information
johannrichard committed Nov 28, 2020
1 parent bf7aa6d commit 6ee2c66
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/lib/dingzLogHelper.ts
Expand Up @@ -13,7 +13,10 @@ export class DingzLogger {
constructor(
private readonly dingzPrefix: string,
private readonly logger: Logger,
) {}
) {
// Force color
chalk.level = 1;
}

/**
* Logger.log like method
Expand Down

0 comments on commit 6ee2c66

Please sign in to comment.