|
|
|
|
|
- Operating mode of the runtime log
Retrieves or modifies the options of the runtime log.
IF BitwiseAND(dbgLogOption(), LogWLanguageFunctions) = LogWLanguageFunctions THEN
Trace("Log with functions")
END
IF BitwiseAND(dbgLogOption(), LogParameters) = LogParameters THEN
Trace("Log with parameters")
END
IF BitwiseAND(dbgLogOption(), LogProcessOnly) = LogProcessOnly THEN
Trace("Log with processes")
END
Sintaxis <Result>: Integer constant Options of the runtime log: | | LogAll | The runtime log retrieves:- the WLanguage functions
- the parameters of the functions
- processes
| LogParameters | The parameters of the functions are written into the runtime log. | LogProcessOnly | The runtime log only retrieves information about the processes. | LogWLanguageFunctions | The WLanguage functions are written into the runtime log. |
Modifying the options of the runtime log Ocultar los detalles
dbgLogOption(<Former options> , <New options>)
<Former options>: Integer constant Options of the runtime log before the modification: | | LogAll | The runtime log retrieves:- the WLanguage functions
- the parameters of the functions
- processes
| LogParameters | The parameters of the functions are written into the runtime log. | LogProcessOnly | The runtime log only retrieves information about the processes. | LogWLanguageFunctions | The WLanguage functions are written into the runtime log. |
<New options>: Integer constant Options of the runtime log: | | LogAll | The runtime log retrieves:- the WLanguage functions
- the parameters of the functions
- processes
| LogParameters | The parameters of the functions are written into the runtime log. | LogProcessOnly | The runtime log only retrieves information about the processes. | LogWLanguageFunctions | The WLanguage functions are written into the runtime log. |
Observaciones Operating mode of the runtime log By default, the execution log is created with all options: listed WLanguage functions and function parameters. These options are used to present the actions in details but the size of the created log will quickly increase. To limit the size of runtime log (when a log is performed over a long time for instance), you have the ability to ignore these options. To limit the size of the runtime log, you also have the ability to enable the runtime log for the application section that is causing problem with dbgLogStatus.
Esta página también está disponible para…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|