@@ -20,7 +20,7 @@ import cromwell.core.Dispatcher.EngineDispatcher
20
20
import cromwell .core .ExecutionIndex .IndexEnhancedIndex
21
21
import cromwell .core ._
22
22
import cromwell .core .callcaching ._
23
- import cromwell .core .logging .WorkflowLogging
23
+ import cromwell .core .logging .{ JobLogging , WorkflowLogging }
24
24
import cromwell .core .simpleton .WomValueSimpleton
25
25
import cromwell .database .sql .joins .CallCachingJoin
26
26
import cromwell .database .sql .tables .CallCachingEntry
@@ -79,6 +79,7 @@ class EngineJobExecutionActor(replyTo: ActorRef,
79
79
groupMetricsActor : ActorRef
80
80
) extends LoggingFSM [EngineJobExecutionActorState , EJEAData ]
81
81
with WorkflowLogging
82
+ with JobLogging
82
83
with CallMetadataHelper
83
84
with JobInstrumentation
84
85
with CromwellInstrumentation
@@ -514,7 +515,7 @@ class EngineJobExecutionActor(replyTo: ActorRef,
514
515
}
515
516
516
517
onTransition { case fromState -> toState =>
517
- log.debug (" Transitioning from {}({}) to {}({})" , fromState, stateData, toState, nextStateData)
518
+ jobLogger.info (" Transitioning from {}({}) to {}({})" , fromState, stateData, toState, nextStateData)
518
519
519
520
EngineJobExecutionActorState .transitionEventString(fromState, toState) foreach {
520
521
eventList :+= ExecutionEvent (_)
0 commit comments