|
|
|
|
|
dbgAuditOption (Function) In french: dbgOptionAudit Retrieves or modifies the options of the dynamic audit. // Find out the options of the dynamic audit IF BinaryAND(dbgAuditOption(), AuditWarningUser) = AuditWarningUser THEN Trace("Dynamic audit with user warning") END IF BinaryAND(dbgAuditOption(), AuditError) = AuditError THEN Trace("Dynamic audit with error") END Syntax
Finding out the options of the dynamic audit Hide the details
<Result> = dbgAuditOption()
<Result>: Integer constant Options of the dynamic audit: | | AuditAssertion | The assertions are written into the dynamic audit. | AuditComment | The audit comments are written into the dynamic audit. An audit comment is written by dbgWriteCommentAudit. | AuditError | The non-fatal errors not processed are written into the dynamic audit. | AuditException | The fatal errors, processed by WHEN EXCEPTION or not processed, are written into the dynamic audit. | AuditWarningAnomaly | The execution warnings regarding the detected anomalies are written into the dynamic audit. | AuditWarningPerformance | The execution warnings regarding performance are registered in the dynamic audit. | AuditWarningUser | The custom execution warnings are written into the dynamic audit. A custom warning is triggered by dbgWriteWarningAudit. |
Modifying the options of the dynamic audit Hide the details
dbgAuditOption([<New options>])
<New options>: Optional integer Options of the dynamic audit: | | AuditAll | All the audit events are written into the dynamic audit. | AuditAssertion | The assertions are written into the dynamic audit. | AuditComment | The audit comments are written into the dynamic audit. An audit comment is written by dbgWriteCommentAudit. | AuditError | The non-fatal errors not processed are written into the dynamic audit. | AuditException | The fatal errors, processed by WHEN EXCEPTION or not processed, are written into the dynamic audit. | AuditWarningAnomaly | The execution warnings regarding the detected anomalies are written into the dynamic audit. | AuditWarningPerformance | The execution warnings regarding performance are registered in the dynamic audit. | AuditWarningUser | The custom execution warnings are written into the dynamic audit. A custom warning is triggered by dbgWriteWarningAudit. |
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|