···359359360360</details>
361361362362+### Logging
363363+364364+MS can log the output of hook transformations if/when they occur. In the `playTransform` object of a Source/Client config use `log`:
365365+366366+* `"log": true` => Output original play + final transformed output of last hook in the array
367367+* `"log": "all"` => Output original play + final transformed output of **each** hook in the array
368368+369369+```json5
370370+{
371371+ "name": "myThing",
372372+ "data": {/*...*/},
373373+ "options": {
374374+ "playTransform": {
375375+ "preCompare": {/*...*/},
376376+ "log": true
377377+ }
378378+ }
379379+}
380380+```
381381+362382## Examples
363383364384### Remove phrase from Title in all new Plays