From 334a38c71e488cf9c1d06e8a0ba1d7bc00a2124d Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Thu, 23 May 2019 17:54:41 +0200 Subject: [PATCH] fix(core): update --- ts/index.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ts/index.ts b/ts/index.ts index 4fa46d2..4f65e4a 100644 --- a/ts/index.ts +++ b/ts/index.ts @@ -19,13 +19,13 @@ export class SmartExit { } public async killAll() { - console.log('Checking for remaining child processes before exit...'); + console.log('SMARTEXIT: Checking for remaining child processes before exit...'); if (this.processesToEnd.getArray().length > 0) { console.log('found remaining child processes'); let counter = 1; this.processesToEnd.forEach(async childProcessArg => { const pid = childProcessArg.pid; - console.log(`killing process #${counter} with pid ${pid}`); + console.log(`SMARTEXIT: killing process #${counter} with pid ${pid}`); plugins.smartdelay.delayFor(10000).then(() => { if (childProcessArg.killed) { return; @@ -37,7 +37,7 @@ export class SmartExit { counter++; }); } else { - console.log(`Everything looks clean. Ready to exit!`); + console.log(`SMARTEXIT: Everything looks clean. Ready to exit!`); } }