Skip to content

Commit

Permalink
update logging, #156
Browse files Browse the repository at this point in the history
  • Loading branch information
zepumph committed May 8, 2023
1 parent a84405b commit e38eac9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/server/ContinuousServerClient.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 ]
Expand Down Expand Up @@ -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}` );

Expand Down

0 comments on commit e38eac9

Please sign in to comment.