Print a permanent log line, clearing status first and restoring after.
(line: string)
| 132 | |
| 133 | /** Print a permanent log line, clearing status first and restoring after. */ |
| 134 | function printLog(line: string): void { |
| 135 | clearStatusLines() |
| 136 | write(line) |
| 137 | } |
| 138 | |
| 139 | /** Regenerate the QR code with the given URL. */ |
| 140 | function regenerateQr(url: string): void { |
no test coverage detected