From e38eac92111ad4c96053364f17fabdc327a23d2f Mon Sep 17 00:00:00 2001 From: Michael Kauzmann Date: Mon, 8 May 2023 10:37:35 -0600 Subject: [PATCH] update logging, https://github.com/phetsims/aqua/issues/156 --- js/server/ContinuousServerClient.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/server/ContinuousServerClient.js b/js/server/ContinuousServerClient.js index 8b29bb2..7f3152b 100644 --- a/js/server/ContinuousServerClient.js +++ b/js/server/ContinuousServerClient.js @@ -55,7 +55,7 @@ class ContinuousServerClient { */ newClientWorker( workerList, workerNumber, clientScriptName = 'puppeteerCTClient.js' ) { - console.log( `Worker${workerNumber} new instance` ); + console.log( `Worker${workerNumber} new instance of ${clientScriptName}` ); const worker = new Worker( `${this.rootDir}/aqua/js/server/${clientScriptName}`, { argv: [ this.ctID, this.serverURL ] @@ -83,7 +83,7 @@ class ContinuousServerClient { let count = 0; - console.log( `Starting up ${this.numberOfPuppeteers} test browsers` ); + console.log( `Starting up ${this.numberOfPuppeteers} Puppeteer and ${this.numberOfFirefoxes} Firefox test browsers` ); console.log( `ctID: ${this.ctID}` ); console.log( `serverURL: ${this.serverURL}` );