Returns and modifies the status of runtime log.
// Starts the runtime log
dbgEnableLog()
...
// Pauses the runtime log
dbgLogStatus(LogPause)
Syntax
Finding out the status of runtime log Hide the details
<Result> = dbgLogStatus()
<Result>: Integer constant
Current status of runtime log: | |
LogDisabled | The runtime log is not enabled. |
LogEnabled | The runtime log is enabled. |
LogPause | The runtime log is paused. |
Modifying the status of runtime log Hide the details
dbgLogStatus(<Former status> , <New status>)
<Former status>: Integer constant
Activity status of the runtime log before the changes made by dbgLogStatus. | |
LogDisabled | The runtime log is not enabled. |
LogEnabled | The runtime log is enabled. |
LogPause | The runtime log is paused. |
<New status>: Integer constant
New status of runtime log: | |
LogDisabled | Permanently stops the runtime log. To re-enable it, you will have to use dbgEnableLog. |
LogEnabled | Enables the runtime log (after a pause). |
LogPause | Temporarily stops the runtime log. |