Skip to content

Commit

Permalink
Merge pull request #3131 from broadinstitute/cjl_cctry_debug
Browse files Browse the repository at this point in the history
Set "Trying to use another call cache hit" messages to debug [develop]
  • Loading branch information
cjllanwarne committed Jan 10, 2018
2 parents 140b2f8 + 4225720 commit 063a451
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -545,11 +545,11 @@ class EngineJobExecutionActor(replyTo: ActorRef,

data.ejha match {
case Some(ejha) =>
log.info("Trying to use another cache hit for job: {}", jobDescriptorKey)
workflowLogger.debug("Trying to use another cache hit for job: {}", jobDescriptorKey)
ejha ! NextHit
goto(CheckingCallCache)
case _ =>
log.info("Could not find another cache hit, falling back to running job: {}", jobDescriptorKey)
workflowLogger.info("Could not find a suitable cache hit, falling back to running job: {}", jobDescriptorKey)
runJob(data)
}
}
Expand Down

0 comments on commit 063a451

Please sign in to comment.