verifDisableDebug
verifDisableDebug(
[ t_string ]
)
=> t / nil
Description
Disables one or more categories for debug logging.
Arguments
|
A string of space-delimited categories that can be disabled. Possible values are: |
Value Returned
Examples
The following examples describe the possible scenarios.
Enables default debugging with the importexport category (for example, db, gui, and simulation).
verifEnableDebug("default importexport")
=> t
Disables the importexport category.
verifDisableDebug("importexport")
=> t
Disables the importexport category again.
verifDisableDebug("importexport")
=> nil
Disables debugging by giving no arguments.
verifDisableDebug()
verifEnableDebug("foo")
*WARNING* (VERIFIER-5022): Cannot disable 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