@knowlearning/agents 0.9.146 → 0.9.148
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/agents/generic/message-queue.js +2 -2
- package/package.json +1 -1
- package/vue/image.vue +2 -2
|
@@ -142,7 +142,7 @@ export default function messageQueue({ token, sid, domain, Connection, watchers,
|
|
|
142
142
|
resolveEnvironment(message)
|
|
143
143
|
}
|
|
144
144
|
else if (server !== message.server) {
|
|
145
|
-
console.warn(`REBOOTING DUE TO SERVER SWITCH ${server} -> ${message.server}
|
|
145
|
+
console.warn(`REBOOTING DUE TO SERVER SWITCH ${server} -> ${message.server}`, message)
|
|
146
146
|
reboot()
|
|
147
147
|
}
|
|
148
148
|
else {
|
|
@@ -205,7 +205,7 @@ export default function messageQueue({ token, sid, domain, Connection, watchers,
|
|
|
205
205
|
}
|
|
206
206
|
}
|
|
207
207
|
catch (error) {
|
|
208
|
-
console.error('ERROR HANDLING CONNECTION MESSAGE', error)
|
|
208
|
+
console.error('ERROR HANDLING CONNECTION MESSAGE', error, message)
|
|
209
209
|
}
|
|
210
210
|
}
|
|
211
211
|
|
package/package.json
CHANGED
package/vue/image.vue
CHANGED