Skip to content

Commit

Permalink
reformat log output
Browse files Browse the repository at this point in the history
  • Loading branch information
busma13 committed Dec 18, 2024
1 parent cd641ce commit b1503f1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions packages/teraslice/src/lib/workers/execution-controller/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -917,11 +917,11 @@ export class ExecutionController {
this.exId
} to finish...`
);
this.logger.debug(`Vars at timeout: isExecutionDone: ${this.isExecutionDone}, client.ready: ${this.client.ready},
isShuttingDown: ${this.isShuttingDown}, isShutdown: ${this.isShutdown},
isDoneDispatching: ${this.isDoneDispatching}, pendingDispatches: ${this.pendingDispatches},
scheduler.isFinished: ${this.scheduler.isFinished}, pendingSlices: ${this.pendingSlices},
onlineClientCount: ${this.server.onlineClientCount}, server.isShuttingDown: ${this.server.isShuttingDown}`);
this.logger.debug(`Vars at timeout:\nisExecutionDone: ${this.isExecutionDone}\nclient.ready: ${this.client.ready}\n`
+ `onlineClientCount: ${this.server.onlineClientCount}\nserver.isShuttingDown: ${this.server.isShuttingDown}`
+ `isShuttingDown: ${this.isShuttingDown}\nisShutdown: ${this.isShutdown}\n`
+ `isDoneDispatching: ${this.isDoneDispatching}\npendingDispatches: ${this.pendingDispatches}\n`
+ `scheduler.isFinished: ${this.scheduler.isFinished}\npendingSlices: ${this.pendingSlices}\n`);
return null;
}

Expand Down

0 comments on commit b1503f1

Please sign in to comment.