verifGetDebug
verifGetDebug( [g_all] ) =>t_categories/ nil
Description
Gets the names of enabled debug categories or all possible categories.
Arguments
Value Returned
|
Returns a space-separated string consisting of all or enabled categories. |
|
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"
verifDisableDebug("gui")
verifGetDebug()
=> "db simulation"
Related Topics
Return to top