We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d0b7693 commit 3da1944Copy full SHA for 3da1944
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "jderobot-commsmanager",
3
- "version": "1.0.13",
+ "version": "1.0.14",
4
"main": "dist/main.js",
5
"typings": "dist/index.d.ts",
6
"scripts": {
src/components/CommsManager.ts
@@ -25,6 +25,7 @@ export default class CommsManager {
25
// Private constructor to only allow single instatiation
26
private constructor() {
27
try {
28
+ console.warn("Trying to connect to RAM")
29
this.ws = new WebSocket(CommsManager.adress);
30
} catch (error) {
31
setTimeout(function () {
@@ -33,6 +34,8 @@ export default class CommsManager {
33
34
}, 1000);
35
return;
36
}
37
+ console.warn("Connected to RAM")
38
+
39
this.setManagerState({
40
id: "",
41
command: "",
0 commit comments