(str: string)
| 89 | } |
| 90 | |
| 91 | private pushOutput(str: string) { |
| 92 | if (str) { |
| 93 | if (this.useTerminal) { |
| 94 | if (this.ptyTerm) { |
| 95 | this.ptyTerm.write(str); |
| 96 | } |
| 97 | } else { |
| 98 | this.output.append(str); |
| 99 | } |
| 100 | } |
| 101 | } |
| 102 | |
| 103 | private createDateHeaderUs(): string { |
| 104 | if (this.timestamp) { |