Hi team, thanks for bringing a good product to us.
I was trying to use the `logs` function and I saw a `logs` many times.
- In `types`
https://github.com/scale-it/algo-builder/blob/40b502658adcc88580844921b3dc933f099b89fd/packages/runtime/src/types.ts#L72-L77
- In `opcode-list`
https://github.com/scale-it/algo-builder/blob/40b502658adcc88580844921b3dc933f099b89fd/packages/runtime/src/interpreter/opcode-list.ts#L4235
And I searched all repo with `/(?<!console)\.log(?!ic)/g`. In your test this is working.
https://github.com/scale-it/algo-builder/blob/40b502658adcc88580844921b3dc933f099b89fd/packages/runtime/test/src/interpreter/inner-transaction.ts#L1158-L1160
However I couldn't read it from the transaction receipt from mocha test with `let rct = runtime.executeTx(callAppParams); rct.logs;` ( in PyTeal I used it). Nor can I use the `deployer` in mocha test like said in [logs - docs](https://algobuilder.dev/guide/logs.html). (tried runtime, not working).
Is this functionality implemented in the production version?