User contributions for Offbyone
Jump to navigation
Jump to search
14 December 2024
- 00:4700:47, 14 December 2024 diff hist +9,120 Logging No edit summary
4 December 2024
- 06:2506:25, 4 December 2024 diff hist +2,082 N LOGMINLEVEL Created page with "{{DISPLAYTITLE:_LOGMINLEVEL}} The _LOGMINLEVEL function returns the current minimum logging level that is being output. {{PageSyntax}} : {{Parameter|level&}} = _LOGMINLEVEL {{PageDescription}} The purpose of _LOGMINLEVEL is to allow programs to skip generating expensive logging if that logging would not be output anywhere. For example, you may have a very large array of integers that you want to log fairly often - generating the strings of the log messages..."
- 05:5805:58, 4 December 2024 diff hist +1,023 N LOGWARN Created page with "{{DISPLAYTITLE:_LOGWARN}} The _LOGWARN statement writes a log message at the Warning level. {{PageSyntax}} : _LOGWARN {{Parameter|message}} {{PageParameters}} * {{Parameter|message}} is a string to write to the log output. {{PageDescription}} See the page on the Logging system for more detailed usage information. {{PageAvailability}} <!-- QB64 = a version or none, QBPE = a version or all, Platforms = yes or no --> <gallery widths="48px" heights="48px" mod..."
- 05:5705:57, 4 December 2024 diff hist +1,024 N LOGTRACE Created page with "{{DISPLAYTITLE:_LOGTRACE}} The _LOGTRACE statement writes a log message at the Trace level. {{PageSyntax}} : _LOGTRACE {{Parameter|message}} {{PageParameters}} * {{Parameter|message}} is a string to write to the log output. {{PageDescription}} See the page on the Logging system for more detailed usage information. {{PageAvailability}} <!-- QB64 = a version or none, QBPE = a version or all, Platforms = yes or no --> <gallery widths="48px" heights="48px" mo..."
- 05:5305:53, 4 December 2024 diff hist +1,500 N LOGERROR Created page with "{{DISPLAYTITLE:_LOGERROR}} The _LOGERROR statement writes a log message at the Error level with an accompanying stacktrace. {{PageSyntax}} : _LOGERROR {{Parameter|message}} {{PageParameters}} * {{Parameter|message}} is a string to write to the log output. {{PageDescription}} See the page on the Logging system for more detailed usage information. Log messages at the Error level include a stacktrace at the point of the log statement which lists the subs and..."
- 05:3505:35, 4 December 2024 diff hist +1,031 N LOGINFO Created page with "{{DISPLAYTITLE:_LOGINFO}} The _LOGINFO statement writes a log message at the Information level. {{PageSyntax}} : _LOGINFO {{Parameter|message}} {{PageParameters}} * {{Parameter|message}} is a string to write to the log output. {{PageDescription}} See the page on the Logging system for more detailed usage information. {{PageAvailability}} <!-- QB64 = a version or none, QBPE = a version or all, Platforms = yes or no --> <gallery widths="48px" heights="48px"..."
- 05:3305:33, 4 December 2024 diff hist +431 N Logging Created page with "'''QB64-PE''' starting in '''v4.0.0''' includes built-in logging support, allowing you to capture and display logging from '''QB64-PE''' programs. This includes both logging from QB64-PE internals ("libqb") and the program itself (via the provided statements). {| align="right" style="max-width:25%;" | __TOC__ |} == Purpose == == Usage == == IDE == == Scopes == == Environment Variables == == Stacktrace == == Examples =="
6 January 2023
- 07:4907:49, 6 January 2023 diff hist +93 $UNSTABLE Add information on HTTP handles
- 07:4807:48, 6 January 2023 diff hist +9 CLOSE Add information on HTTP handles
- 07:4807:48, 6 January 2023 diff hist +346 CONNECTIONADDRESS Add information on HTTP handles
- 07:4707:47, 6 January 2023 diff hist +429 EOF Add information on HTTP handles
- 07:4607:46, 6 January 2023 diff hist +551 LOF Add information on HTTP handles
- 07:4507:45, 6 January 2023 diff hist −15 CONNECTED No edit summary
- 07:4507:45, 6 January 2023 diff hist −1,631 OPENCLIENT No edit summary
- 07:4407:44, 6 January 2023 diff hist +1,258 N STATUSCODE Created page with "{{DISPLAYTITLE:_STATUSCODE}} '''_STATUSCODE''' gives the HTTP status code of an HTTP response that was opened using _OPENCLIENT. {{Text|'''HTTP functionality is current unstable, and requires $UNSTABLE:HTTP to be able to use.'''|red}} {{PageSyntax}} : ''_STATUSCODE''({{Parameter|Handle}}) {{PageParameters}} * {{Parameter|Handle}} is the handle returned from _OPENCLIENT when making an HTTP request. {{PageDescription}} '''_STATUSCODE''' is used to get the H..."
- 07:4407:44, 6 January 2023 diff hist +3,056 N GET (HTTP statement) Created page with "{{DISPLAYTITLE:GET (HTTP Statement)}} '''GET''' reads the response of an HTTP request that was opened using _OPENCLIENT. {{Text|'''HTTP functionality is current unstable, and requires $UNSTABLE:HTTP to be able to use.'''|red}} {{PageSyntax}} : ''GET'' #{{Parameter|Handle}}, , {{Parameter|String}} : ''GET'' #{{Parameter|Handle}}, , {{Parameter|Fixed-Length-Variable}} {{PageParameters}} * {{Parameter|Handle}} is the handle returned from _OPENCLIENT when maki..."
- 07:4307:43, 6 January 2023 diff hist −1,123 Downloading Files Replace page with information on the new HTTP support.
11 September 2022
- 15:0815:08, 11 September 2022 diff hist +3 m $UNSTABLE Missing a word Tag: visualeditor
- 14:5814:58, 11 September 2022 diff hist +71 SNDOPEN Clarified playing MID files requires using $MIDISOUNDFONT Tag: visualeditor
- 14:5414:54, 11 September 2022 diff hist −96 m $UNSTABLE Revert accidental changes to this page Tag: Manual revert
- 14:5314:53, 11 September 2022 diff hist +1,253 N $MIDISOUNDFONT Added documentation of new $MIDISOUNDFONT metacommand
- 14:5214:52, 11 September 2022 diff hist +96 $UNSTABLE Added documentation of new $MIDISOUNDFONT metacommand
- 14:4514:45, 11 September 2022 diff hist +1,157 N $UNSTABLE Added documentation of new $UNSTABLE metacommand
- 01:2701:27, 11 September 2022 diff hist −6 SNDOPEN _SNDOPEN() always returns zero on error. Tag: visualeditor
- 01:2501:25, 11 September 2022 diff hist +92 SNDBAL _SNDBAL per channel no longer works in v3.1.0 with the new audio backend. Tag: visualeditor
18 June 2022
- 23:4723:47, 18 June 2022 diff hist +34 m PRINTMODE Clarified that _PRINTMODE is a setting that is applied to images, not the screen in general. Tag: visualeditor
10 May 2022
- 23:4523:45, 10 May 2022 diff hist +282 $VERSIONINFO Add information on changes to the numerical keys for $VERSIONINFO Tag: visualeditor