mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-12 03:57:27 +00:00
add debug statement for catching EISC registration result.
This commit is contained in:
parent
615c0d1545
commit
a1ee157ab8
2 changed files with 7 additions and 2 deletions
|
|
@ -74,7 +74,10 @@ namespace PepperDash.Essentials.Bridges
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Debug.Console(1, this, "Devices Linked.");
|
Debug.Console(1, this, "Devices Linked.");
|
||||||
Eisc.Register();
|
|
||||||
|
var registerResult = Eisc.Register();
|
||||||
|
|
||||||
|
Debug.Console(2, this, "Registration result: {0}", registerResult);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -120,7 +120,9 @@ namespace PepperDash.Essentials.Core.Bridges
|
||||||
if (bridge != null) bridge.LinkToApi(Eisc, d.JoinStart, d.JoinMapKey, this);
|
if (bridge != null) bridge.LinkToApi(Eisc, d.JoinStart, d.JoinMapKey, this);
|
||||||
}
|
}
|
||||||
|
|
||||||
Eisc.Register();
|
var registerResult = Eisc.Register();
|
||||||
|
|
||||||
|
Debug.Console(2, this, "Registration result: {0}", registerResult);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue