ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Standard functions / Debug functions
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
dbgLogStatus (Function)
In french: dbgEtatLog
Returns and modifies the status of runtime log.
Example
// 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:
LogDisabledThe runtime log is not enabled.
WEBDEV - Server code This constant is not available.
LogEnabledThe runtime log is enabled.
LogPauseThe 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.
LogDisabledThe runtime log is not enabled.
WEBDEV - Server code This constant is not available.
LogEnabledThe runtime log is enabled.
LogPauseThe runtime log is paused.
<New status>: Integer constant
New status of runtime log:
LogDisabledPermanently stops the runtime log. To re-enable it, you will have to use dbgEnableLog.
WEBDEV - Server code This constant is not available.
LogEnabledEnables the runtime log (after a pause).
LogPauseTemporarily stops the runtime log.
Component: wd290vm.dll
Minimum version required
  • Version 12
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 07/03/2023

Send a report | Local help