verifEnableDebug
verifEnableDebug( [t_string] ) =>t/ nil
Description
Enables additional debug logging of various categories.
Arguments
Value Returned
Examples
The following examples describe the possible scenarios.
Enables default debugging category (for example, db, gui, and simulation).
verifEnableDebug()
=> t
Enables the db and gui categories.
verifEnableDebug("db gui")
=> t
Errors out to indicate that the debugging operation has failed because an invalid argument was passed.
verifEnableDebug("foo")
*WARNING* (VERIFIER-5022): Cannot enable category 'foo' because it is not a valid category name. Select a category name from 'all db default detailedperformance gui importexport performance simulation vmanager' and try again.
=> nil
Related Topics
Return to top