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 54b00d4 commit eb96b34Copy full SHA for eb96b34
src/workspace-d.ts
@@ -32,6 +32,8 @@ export class WorkspaceD extends EventEmitter implements
32
this.totalData = new Buffer(0);
33
this.instance.stderr.on("data", function(chunk) {
34
console.log("WorkspaceD Debug: " + chunk);
35
+ if (chunk.toString().indexOf("DCD-Server stopped with code") != -1)
36
+ self.ensureDCDRunning();
37
});
38
this.instance.stdout.on("data", function(chunk) {
39
self.handleData.call(self, chunk);
0 commit comments