(...args: unknown[])
| 68 | } |
| 69 | |
| 70 | debug(...args: unknown[]) { |
| 71 | if (this.level >= repomixLogLevels.DEBUG) { |
| 72 | console.log(pc.blue(this.formatArgs(args))); |
| 73 | } |
| 74 | } |
| 75 | |
| 76 | trace(...args: unknown[]) { |
| 77 | if (this.level >= repomixLogLevels.DEBUG) { |
no test coverage detected