Skip to content

Commit d624570

Browse files
committed
update tests submodule to master
1 parent 7345d50 commit d624570

2 files changed

Lines changed: 10 additions & 1 deletion

File tree

runtime/src/main/java/com/tns/Runtime.java

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -291,8 +291,17 @@ public void run() {
291291
WorkThreadScheduler workThreadScheduler = new WorkThreadScheduler(new WorkerThreadHandler());
292292

293293
DynamicConfiguration dynamicConfiguration = new DynamicConfiguration(workerId, workThreadScheduler, mainThreadScheduler, callingJsDir);
294+
295+
if(staticConfiguration.logger.isEnabled()) {
296+
staticConfiguration.logger.write("Worker (id=" + workerId + ")'s Runtime is initializing!");
297+
}
298+
294299
Runtime runtime = initRuntime(dynamicConfiguration);
295300

301+
if(staticConfiguration.logger.isEnabled()) {
302+
staticConfiguration.logger.write("Worker (id=" + workerId + ")'s Runtime initialized!");
303+
}
304+
296305
/*
297306
Send a message to the Main Thread to `shake hands`,
298307
Main Thread will cache the Worker Handler for later use

0 commit comments

Comments
 (0)