mirror of
https://github.com/lnbits/lnbits.git
synced 2025-04-03 09:28:05 +02:00
fix: do not show command data in logs
This commit is contained in:
parent
2b56efa2b6
commit
649c653836
@ -230,8 +230,9 @@ async function serialSigner(path) {
|
||||
while (true) {
|
||||
const {value, done} = await readStringUntil('\n')
|
||||
if (value) {
|
||||
this.handleSerialPortResponse(value)
|
||||
this.updateSerialPortConsole(value)
|
||||
const {command, commandData} = await this.extractCommand(value)
|
||||
this.handleSerialPortResponse(command, commandData)
|
||||
this.updateSerialPortConsole(command)
|
||||
}
|
||||
if (done) return
|
||||
}
|
||||
@ -245,8 +246,7 @@ async function serialSigner(path) {
|
||||
}
|
||||
}
|
||||
},
|
||||
handleSerialPortResponse: async function (value) {
|
||||
const {command, commandData} = await this.extractCommand(value)
|
||||
handleSerialPortResponse: async function (command, commandData) {
|
||||
this.logPublicCommandsResponse(command, commandData)
|
||||
|
||||
switch (command) {
|
||||
@ -287,7 +287,7 @@ async function serialSigner(path) {
|
||||
)
|
||||
break
|
||||
default:
|
||||
console.log(` %c${value}`, 'background: #222; color: red')
|
||||
console.log(` %c${command}`, 'background: #222; color: red')
|
||||
}
|
||||
},
|
||||
logPublicCommandsResponse: function (command, commandData) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user