Retrieves and changes the status of the dynamic audit.
// Starts the dynamic audit
dbgEnableAudit()
...
// Pauses the dynamic audit
dbgAuditStatus(AuditPause)
Syntax
Finding out the status of dynamic audit Hide the details
<Result> = dbgAuditStatus()
<Result>: Integer constant
Current status of dynamic audit: | |
AuditDisabled | The dynamic audit was not enabled. |
AuditEnabled | The dynamic audit is enabled. |
AuditPause | The dynamic audit is paused. |
Modifying the status of dynamic audit Hide the details
<Result> = dbgAuditStatus(<New status>)
<Result>: Integer constant
Dynamic auditing activity status before the changes made by dbgAuditStatus. | |
AuditDisabled | The dynamic audit was not enabled. |
AuditEnabled | The dynamic audit is enabled. |
AuditPause | The dynamic audit is paused. |
<New status>: Integer constant
New status of dynamic audit: | |
AuditDisabled | Permanently stops the dynamic audit. To re-enable it, you will have to use dbgEnableAudit. |
AuditEnabled | Enables the dynamic audit (after a pause). |
AuditPause | Temporarily stops the dynamic audit. |