dcp-worker 3.3.13 → 3.3.14-0
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/bin/dcp-worker +1 -0
- package/package.json +1 -1
package/bin/dcp-worker
CHANGED
|
@@ -449,6 +449,7 @@ async function main()
|
|
|
449
449
|
nascentWorker.on('warning', (...payload) => console.warn (...payload));
|
|
450
450
|
nascentWorker.on('stop', () => { console.log('Worker is stopping') });
|
|
451
451
|
nascentWorker.on('end', () => { logClosing('log', 'Worker has stopped') });
|
|
452
|
+
nascentWorker.on('job', job => console.log(` . Job: ${job.name} ${job.address.slice(0,8)} ${job.description || ''} ${job.link || ''}`));
|
|
452
453
|
|
|
453
454
|
// Display clean diagnostic when not debugging and env var
|
|
454
455
|
// DCP_SUPERVISOR_DEBUG_DISPLAY_MAX_INFO isn't set.
|