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 committed Apr 19, 2024
1 parent 92c8eee commit d776ca6
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 d776ca6

Please sign in to comment.