You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -548,11 +548,8 @@ class EngineJobExecutionActor(replyTo: ActorRef,
548
548
// due to timeouts). That's ok, we just ignore this message in any other situation:
549
549
stay()
550
550
caseEvent(msg, _) =>
551
-
log.error("Bad message from {} to EngineJobExecutionActor in state {}(with data {}): {}",
552
-
sender(),
553
-
stateName,
554
-
stateData,
555
-
msg
551
+
jobLogger.error(
552
+
s"Bad message from ${sender()} to EngineJobExecutionActor in state ${stateName}(with data ${stateData}): ${msg}"
556
553
)
557
554
stay()
558
555
}
@@ -623,15 +620,23 @@ class EngineJobExecutionActor(replyTo: ActorRef,
623
620
runJob(updatedData)
624
621
}
625
622
626
-
privatedefrequestRestartCheckToken():Unit=
623
+
privatedefrequestRestartCheckToken():Unit= {
624
+
jobLogger.info(
625
+
s"EJEA ${self.toString().split('#').lastOption.getOrElse("ERR").stripSuffix("]")} is requesting restart token of type ${backendLifecycleActorFactory.jobExecutionTokenType} for ${workflowDescriptor.backendDescriptor.hogGroup}"
s"EJEA ${self.toString().split('#').lastOption.getOrElse("ERR").stripSuffix("]")} is requesting execution token of type ${backendLifecycleActorFactory.jobExecutionTokenType} for ${workflowDescriptor.backendDescriptor.hogGroup}"
0 commit comments