pinokiod 3.15.6 → 3.15.7
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.
- package/kernel/procs.js +2 -0
- package/package.json +1 -1
package/kernel/procs.js
CHANGED
|
@@ -159,6 +159,7 @@ class Procs {
|
|
|
159
159
|
}
|
|
160
160
|
}).then((result) => {
|
|
161
161
|
this.port_running = false
|
|
162
|
+
console.log(new Error().stack)
|
|
162
163
|
console.log("Exec Finished", {result})
|
|
163
164
|
})
|
|
164
165
|
}
|
|
@@ -235,6 +236,7 @@ class Procs {
|
|
|
235
236
|
}
|
|
236
237
|
}).then((result) => {
|
|
237
238
|
this.pid_running = false
|
|
239
|
+
console.log(new Error().stack)
|
|
238
240
|
console.log("Exec Finished", {result})
|
|
239
241
|
})
|
|
240
242
|
}
|