pug-more / mageploy

An experimental module to replicate Admin actions between different project environments
Open Software License 3.0
99 stars 18 forks source link

[Question] Is it also logging unsuccessful action? #4

Closed amenk closed 11 years ago

amenk commented 11 years ago

I saw there is an observer in the predispatch which calls $record() - are there additional checks to see if an admin action was successful or are they all logged?

aleron75 commented 11 years ago

Mageploy's trackers simply record calls to actions and respective parameters, don't verify what happens after the invocation. When you play recorded actions via the Command Line Tool you will get success or error because actions are called at that time.

Thinking to Mageploy as a "macro recorder" may help understanding better its logic: when you register a macro you record actions you perform, not their results. The same happens in Mageploy. Results are given when you play back the recorded actions.

amenk commented 11 years ago

Thank you