We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fda9d81 commit ef533a7Copy full SHA for ef533a7
packages/@d-zero/dealer/src/lanes.ts
@@ -32,6 +32,19 @@ export class Lanes {
32
this.#verbose = options?.verbose ?? false;
33
}
34
35
+ clear(options?: { header?: boolean }) {
36
+ if (this.#verbose) {
37
+ return;
38
+ }
39
+
40
+ this.#logs.clear();
41
42
+ if (options?.header) {
43
+ this.#header = undefined;
44
45
46
+ this.write();
47
48
close() {
49
this.#display.close();
50
0 commit comments