Yes, it's debugging
This commit is contained in:
parent
47f7efc4be
commit
94d8fa5d57
8
index.ts
8
index.ts
|
@ -103,7 +103,7 @@ function handle_message(message: Partial<WebSocketMessage>) {
|
||||||
newHyperdeck.sendCommand(new Commands.DeviceInfoCommand()).then((info) => {
|
newHyperdeck.sendCommand(new Commands.DeviceInfoCommand()).then((info) => {
|
||||||
notifyClients({
|
notifyClients({
|
||||||
event: "log",
|
event: "log",
|
||||||
message: JSON.stringify(info)
|
message: "DEVICE INFO " + JSON.stringify(info)
|
||||||
})
|
})
|
||||||
let slots = info.slots === null ? 1 : info.slots;
|
let slots = info.slots === null ? 1 : info.slots;
|
||||||
for (let index = 0; index < slots; index++) {
|
for (let index = 0; index < slots; index++) {
|
||||||
|
@ -111,7 +111,7 @@ function handle_message(message: Partial<WebSocketMessage>) {
|
||||||
newHyperdeck.sendCommand(new Commands.SlotInfoCommand(index)).then((slot) => {
|
newHyperdeck.sendCommand(new Commands.SlotInfoCommand(index)).then((slot) => {
|
||||||
notifyClients({
|
notifyClients({
|
||||||
event: "log",
|
event: "log",
|
||||||
message: JSON.stringify(slot)
|
message: "SLOT " + JSON.stringify(slot)
|
||||||
})
|
})
|
||||||
notifyClients({
|
notifyClients({
|
||||||
event: "record_time_remaining",
|
event: "record_time_remaining",
|
||||||
|
@ -123,7 +123,7 @@ function handle_message(message: Partial<WebSocketMessage>) {
|
||||||
console.log(JSON.stringify(err))
|
console.log(JSON.stringify(err))
|
||||||
notifyClients({
|
notifyClients({
|
||||||
event: "log",
|
event: "log",
|
||||||
message: JSON.stringify(err)
|
message: "ERR " + JSON.stringify(err)
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
}, 1000)
|
}, 1000)
|
||||||
|
@ -133,7 +133,7 @@ function handle_message(message: Partial<WebSocketMessage>) {
|
||||||
console.log(JSON.stringify(err))
|
console.log(JSON.stringify(err))
|
||||||
notifyClients({
|
notifyClients({
|
||||||
event: "log",
|
event: "log",
|
||||||
message: JSON.stringify(err)
|
message: "ERR " + JSON.stringify(err)
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
}, 1000)
|
}, 1000)
|
||||||
|
|
Loading…
Reference in New Issue