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