Skip to content

Commit

Permalink
gbif/pipelines#957 Add type to extra logging to track step changes
Browse files Browse the repository at this point in the history
  • Loading branch information
muttcg authored and ahakanzn committed Apr 22, 2024
1 parent 4aa2173 commit 18e31df
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -617,7 +617,8 @@ public long updatePipelineStep(PipelineStep pipelineStep, String user) {
pipelineStep.setStarted(LocalDateTime.now());
pipelineStep.setCreatedBy(user);

LOG.info("Update pipelines step: {}, state: {}", pipelineStep.getKey(), pipelineStep.getState());
LOG.info("Update pipelines step: {}, type: {}, state: {}", pipelineStep.getKey(), pipelineStep.getType(),
pipelineStep.getState());

mapper.updatePipelineStep(pipelineStep);
return pipelineStep.getKey();
Expand Down

0 comments on commit 18e31df

Please sign in to comment.