feature_24985 #16

Merged
francesco.mangiacrapa merged 2 commits from feature_24985 into master 2023-05-11 14:24:59 +02:00
1 changed files with 1 additions and 0 deletions
Showing only changes of commit 64231c75a9 - Show all commits

View File

@ -212,6 +212,7 @@ public abstract class AbstractLifeCycleManager extends AbstractPlugin implements
public EventExecutionReport onEvent(EventExecutionRequest request) throws EventException, InvalidPluginRequestException {
log.info("Executing Event {}, Parameters: {}, Context: {}",request.getEvent(), request.getCallParameters(), request.getContext());
log.info("Event fired on ProjectID {} with ProfileID: {}",request.getDocument().getId(), request.getDocument().getProfileID());
log.debug("Executing Event request: {}", request);
EventExecutionReport report=new EventExecutionReport(request);
report.getToSetLifecycleInformation().addEventReport(new TriggeredEvents());
TriggeredEvents info = report.getToSetLifecycleInformation().getLastEvent();