Skip to content

Commit

Permalink
plan target debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
trevlenb2 committed Nov 4, 2024
1 parent 6cbb93b commit 68976ca
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,13 @@ public void etl(EventTrackerMessage eventTrackerMessage) {
});

UUID planIdentifier1 = eventTrackerMessage.getPlanIdentifier();
log.debug("submitting plan {}", planIdentifier1);
if (hdssProperties.getTarget()!=null){
hdssProperties.getTarget().entrySet().stream().forEach(entry->{
log.debug("current plan targets {} {} ", entry.getKey(),entry.getValue());
});

}
if (planIdentifier1 != null && hdssProperties.getTarget() != null) {

UUID targetPlan = hdssProperties.getTarget().get(planIdentifier1);
Expand Down

0 comments on commit 68976ca

Please sign in to comment.