Is there a way to obtain plain-text logs of changes to nodes? Else, is there an endpoint which allows access to this information outside of the backend UI?
Our scenario is that we would like to write a script to track the changes which were made to pages in our staging environment, such that come release time, we are able to determine the extent of changes so that we do not push an incomplete page via Courier.
Plain text page changes logging
Is there a way to obtain plain-text logs of changes to nodes? Else, is there an endpoint which allows access to this information outside of the backend UI?
Our scenario is that we would like to write a script to track the changes which were made to pages in our staging environment, such that come release time, we are able to determine the extent of changes so that we do not push an incomplete page via Courier.
Thank you!
All changes are already recorded in the
umbracoLog
table in the database. I wrote a viewer for this - https://www.diplo.co.uk/blog/web-development/diplo-audit-log-viewer-for-umbraco/If you really wanted to write your own log to a text file I guess you could - you could hook into events - https://our.umbraco.com/Documentation/Getting-Started/Code/Subscribing-To-Events/ - and then use the Content Service events to log changes.
is working on a reply...