Product Documentation
Virtuoso ADE Verifier SKILL Reference
Product Version IC23.1, November 2023

verifGetDebug

verifGetDebug(
[ g_all ]
)
=> t_categories / nil

Description

Gets the names of enabled debug categories or all possible categories.

Arguments

g_all

Returns all possible categories if non-zero, else returns only the enabled categories. Possible values are: all, db, default, detailedperformance, gui, importexport, performance, simulation, and vmanager.

Value Returned

t_categories

Returns a space-separated string consisting of all or enabled categories.

nil

No categories are enabled.

Examples

The following examples illustrate the possible scenarios.

Gets the currently enabled categories (by default none).

verifGetDebug()
=> nil

Gets all of the available categories.

verifGetDebug(t)
=> "all db default detailedperformance gui importexport performance simulation vmanager"

Enables and then gets those categories.

verifEnableDebug("db gui simulation")
=> t
verifGetDebug()
=> "db gui simulation"

Disables the gui category.

verifDisableDebug("gui")
verifGetDebug()
=> "db simulation"

Related Topics

verifEnableDebug

verifDisableDebug

Debugging Functions


Return to top
 ⠀
X