|
|
|
|
|
dbgLogStatus (Function) In french: dbgEtatLog 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
<Former status> = dbgLogStatus(<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. |
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|