Adding a dummy _posting_ to a posting batch with debug information is a similar way of seeing information, by inserting data into the `instruction_details`. This can then be viewed in the simulation response object or the account view in the Operations Dashboard.
xxxxxxxxxx
posting_ins.extend(
vault.make_internal_transfer_instructions(
amount=Decimal(1),
denomination=denomination,
from_account_id=vault.account_id,
from_account_address=DEFAULT_ADDRESS,
to_account_id=vault.account_id,
to_account_address='DEBUG',
asset=DEFAULT_ASSET,
override_all_restrictions=True,
client_transaction_id=f'DEBUG_ACCRUED_OVERDRAFT_FEE'
f'_{vault.get_hook_execution_id()}'
f'_{denomination}_CUSTOMER',
instruction_details={
'description': f'Balances {str(balances.keys())}\ndenom {denomination}\nnet {balances[("OVERDRAFT_FEE", DEFAULT_ASSET, denomination, Phase.COMMITTED)].net}\n{str(effective_date)}',
'event': 'APPLY_ACCRUED_OVERDRAFT_FEE'
}
)
)