Skip to content

Commit 652dd7c

Browse files
authored
AN-522 Temporarily log EJEA transitions (#7739)
1 parent e23d384 commit 652dd7c

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

engine/src/main/scala/cromwell/engine/workflow/lifecycle/execution/job/EngineJobExecutionActor.scala

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import cromwell.core.Dispatcher.EngineDispatcher
2020
import cromwell.core.ExecutionIndex.IndexEnhancedIndex
2121
import cromwell.core._
2222
import cromwell.core.callcaching._
23-
import cromwell.core.logging.WorkflowLogging
23+
import cromwell.core.logging.{JobLogging, WorkflowLogging}
2424
import cromwell.core.simpleton.WomValueSimpleton
2525
import cromwell.database.sql.joins.CallCachingJoin
2626
import cromwell.database.sql.tables.CallCachingEntry
@@ -79,6 +79,7 @@ class EngineJobExecutionActor(replyTo: ActorRef,
7979
groupMetricsActor: ActorRef
8080
) extends LoggingFSM[EngineJobExecutionActorState, EJEAData]
8181
with WorkflowLogging
82+
with JobLogging
8283
with CallMetadataHelper
8384
with JobInstrumentation
8485
with CromwellInstrumentation
@@ -514,7 +515,7 @@ class EngineJobExecutionActor(replyTo: ActorRef,
514515
}
515516

516517
onTransition { case fromState -> toState =>
517-
log.debug("Transitioning from {}({}) to {}({})", fromState, stateData, toState, nextStateData)
518+
jobLogger.info("Transitioning from {}({}) to {}({})", fromState, stateData, toState, nextStateData)
518519

519520
EngineJobExecutionActorState.transitionEventString(fromState, toState) foreach {
520521
eventList :+= ExecutionEvent(_)

0 commit comments

Comments
 (0)