We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 853523a commit 0b19cf4Copy full SHA for 0b19cf4
1 file changed
framework-ts/yadan/lib/cluster.ts
@@ -26,7 +26,9 @@ process.on('message', (msg: ClusterMsg) => {
26
const { action, data, from, to } = msg
27
// let titleNew = data.title ? data.title : data.baseDir
28
29
- console.info('::message:', process.pid, process.ppid, msg)
+ // process.ppid need node.js v8.10
30
+ // console.info('::message:', process.pid, process.ppid, msg)
31
+ console.info('::message:', process.pid, msg)
32
console.info('::window title:' + process.title)
33
if (action === 'egg-ready') {
34
if (to === 'app' && from === 'master') {
0 commit comments