Skip to content

Commit

Permalink
Add enhanced logs
Browse files Browse the repository at this point in the history
  • Loading branch information
Will-Lo committed May 10, 2023
1 parent caaff4d commit 0b89d11
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,8 @@ protected void processMessage(DecodeableKafkaRecord<byte[],byte[]> message) {
this.cancelledSpecs.mark();
this.jobCatalog.remove(specUri, true);
} else {
log.warn("Could not find job spec {} with flow execution ID {} to cancel", specUri, flowIdToCancel);
log.warn("Job spec {} that has flow execution ID {} could not be cancelled, incoming request expects to cancel flow execution ID {}", specUri,
spec.getConfig().getString(ConfigurationKeys.FLOW_EXECUTION_ID_KEY), flowIdToCancel);
}
}
} catch (JobSpecNotFoundException e) {
Expand Down

0 comments on commit 0b89d11

Please sign in to comment.