Skip to content

Commit 4dc2bea

Browse files
committed
#AI Commit#
add log
1 parent b607438 commit 4dc2bea

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

  • dss-orchestrator/orchestrators/dss-workflow/dss-flow-execution-server/src/main/scala/com/webank/wedatasphere/dss/flow/execution/entrance/job

dss-orchestrator/orchestrators/dss-workflow/dss-flow-execution-server/src/main/scala/com/webank/wedatasphere/dss/flow/execution/entrance/job/FlowEntranceJob.scala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ class FlowEntranceJob(persistManager: PersistenceManager) extends EntranceExecut
142142
private def collectNodeOutputVariables(nodeName: String): Unit = {
143143
val runner = this.getFlowContext.getRunningNodes.get(nodeName)
144144
if (runner == null) {
145-
warn(s"Skip collecting output variables for node($nodeName) because runner is not in runningNodes.")
145+
info(s"Skip collecting output variables for node($nodeName) because runner is not in runningNodes.")
146146
return
147147
}
148148
if (runner.getLinkisJob == null) {
@@ -162,10 +162,10 @@ class FlowEntranceJob(persistManager: PersistenceManager) extends EntranceExecut
162162
}
163163
val outputVariables = resolveNodeOutputVariables(runner, resultVariables)
164164
if (resultVariables == null || resultVariables.isEmpty) {
165-
warn(s"No raw result variables extracted from node($nodeName). The result set may be empty or unsupported for branch extraction.")
165+
info(s"No raw result variables extracted from node($nodeName). The result set may be empty or unsupported for branch extraction.")
166166
}
167167
if (outputVariables == null || outputVariables.isEmpty) {
168-
warn(s"No output variables available for node($nodeName) after branchOutputMapping resolution.")
168+
info(s"No output variables available for node($nodeName) after branchOutputMapping resolution.")
169169
return
170170
}
171171
this.flowVariables.synchronized {

0 commit comments

Comments
 (0)