Skip to content

Commit

Permalink
fix(log): minor log refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
kirangodishala committed Dec 10, 2024
1 parent 40fd05d commit 48975d9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -512,7 +512,6 @@ class SqlExecutionRepository(

val finalResult: MutableList<String> = mutableListOf()

log.info("getting execution ids")
withPool(poolName) {
val baseQuery = jooq.select(field("config_id"), field("id"))
.from(table)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -607,9 +607,9 @@ class TaskController {

// get all relevant pipeline and strategy configs from front50
def pipelineConfigIds = front50Service.getPipelines(application, false)*.id as List<String>
log.info("received ${pipelineConfigIds.size()} pipelines for application: $application from front50")
log.debug("received ${pipelineConfigIds.size()} pipelines for application: $application from front50")
def strategyConfigIds = front50Service.getStrategies(application)*.id as List<String>
log.info("received ${strategyConfigIds.size()} strategies for application: $application from front50")
log.debug("received ${strategyConfigIds.size()} strategies for application: $application from front50")

def allFront50PipelineConfigIds = pipelineConfigIds + strategyConfigIds

Expand Down

0 comments on commit 48975d9

Please sign in to comment.