Modify Event Log Listeners

Is there a way to remove certain event listeners from being displayed on the “Event Log” subtab in the “History” tab? I want to turn off the “document modified” listener and create listeners for different steps in the workflow and life-cylce changes. With the “document modified” listener on, the Event Log gets filled up super fast and it's hard to pick through.

Thank you!!!!

1 votes

1 answers

2491 views

ANSWER



Man, you ask some stupid questions. Write this XML extension:

<documentation>
  Those default auditable events match Nuxeo core base events.
  <p/>
  If you are sending new Nuxeo core events and want them audited, this is
  the place to declare them NXAudit side.
</documentation>
<event name="documentModified" enabled="false"/>
<event name="documentLocked" enabled="false"/>
<event name="documentUnlocked" enabled="false"/>

<event name="aboutToRemove" enabled="false"/>
<event name="aboutToRemoveVersion" enabled="false"/>

<event name="emptyDocumentModelCreated" enabled="false"/>
<event name="sessionSaved" enabled="false"/>

<event name="aboutToMove" enabled="false"/>
<event name="documentCreatedByCopy" enabled="false"/>

<event name="documentMoved" enabled="false"/>
<event name="beforeRestoringDocument" enabled="false"/>

<event name="documentProxyPublished" enabled="false"/>
<event name="documentProxyUpdated" enabled="false"/>

<event name="sectionContentPublished" enabled="false"/>
<event name="documentPublicationRejected" enabled="false"/>

<event name="documentWaitingPublication" enabled="false"/>

0 votes