deepdebug-local-agent 0.3.12 → 0.3.13

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/package.json +1 -1
  2. package/server.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "deepdebug-local-agent",
3
- "version": "0.3.12",
3
+ "version": "0.3.13",
4
4
  "description": "Insptech AI — DeepDebug Local Agent. Autonomous code debugging agent for production environments.",
5
5
  "type": "module",
6
6
  "main": "server.js",
package/server.js CHANGED
@@ -5243,7 +5243,7 @@ app.listen(PORT, '0.0.0.0', async () => {
5243
5243
  }
5244
5244
 
5245
5245
  if (process.env.DISABLE_WS_TUNNEL !== 'true') {
5246
- startWebSocketTunnel(PORT, gwUrl, apiKey, tenantId);
5246
+ startWebSocketTunnel(PORT, gwUrl, apiKey, tenantId).then(() => console.log("WS tunnel started")).catch(err => console.error("WS tunnel failed:", err));
5247
5247
  }
5248
5248
  });
5249
5249