teleportxr 1.0.70 → 1.0.71

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.
Files changed (2) hide show
  1. package/client/client.js +2 -2
  2. package/package.json +1 -1
package/client/client.js CHANGED
@@ -544,7 +544,7 @@ class Client {
544
544
  return;
545
545
  }
546
546
  const sendSuccess = this.webRtcConnection.sendGeometry(view2);
547
- console.log("Sending node "+uid+" "+node.name+" to Client "+this.clientID+", size: "+nodeSize+" bytes — "+
547
+ console.log("[T+"+this.elapsedMsSinceStart()+"ms, conn+"+this.elapsedMsSinceConnected()+"ms] Sending node "+uid+" "+node.name+" to Client "+this.clientID+", size: "+nodeSize+" bytes — "+
548
548
  (sendSuccess ? "OK" : "FAILED"));
549
549
  if(sendSuccess)
550
550
  this.geometryService.EncodedResource(uid);
@@ -573,7 +573,7 @@ class Client {
573
573
  return;
574
574
  }
575
575
  const sendSuccess = this.webRtcConnection.sendGeometry(view2);
576
- console.log("Sending resource "+uid+" "+resource.url+" to Client "+this.clientID+", size: "+resourceSize+" bytes — "+
576
+ console.log("[T+"+this.elapsedMsSinceStart()+"ms, conn+"+this.elapsedMsSinceConnected()+"ms] Sending resource "+uid+" "+resource.url+" to Client "+this.clientID+", size: "+resourceSize+" bytes — "+
577
577
  (sendSuccess ? "OK" : "FAILED"));
578
578
  if(sendSuccess)
579
579
  this.geometryService.EncodedResource(uid);
package/package.json CHANGED
@@ -16,7 +16,7 @@
16
16
  },
17
17
  "name": "teleportxr",
18
18
  "description": "Teleport Spatial Server on node.js",
19
- "version": "1.0.70",
19
+ "version": "1.0.71",
20
20
  "repository": {
21
21
  "type": "git",
22
22
  "url": "git+https://github.com/simul/teleport-nodejs.git"