fix(logger): Preserve logbox width after logBoxEnd so that subsequent logBoxLine calls continue using the set width.

This commit is contained in:
2025-03-26 22:43:18 +00:00
parent 00afa317ef
commit 456351ca34
3 changed files with 7 additions and 4 deletions

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@serve.zone/nupst',
version: '2.6.16',
version: '2.6.17',
description: 'Node.js UPS Shutdown Tool for SNMP-enabled UPS devices'
}

View File

@ -112,9 +112,6 @@ export class Logger {
// Create the bottom border: └────────┘
console.log(`${'─'.repeat(boxWidth - 2)}`);
// Reset the current box width
this.currentBoxWidth = null;
}
/**