1
1
Fork 0
mirror of https://github.com/boxgaming/qbjs.git synced 2024-05-12 08:00:12 +00:00
2 Console.Log
boxgaming edited this page 2023-09-25 13:40:54 -05:00

Logs a message to the console.
When the program is run from the IDE the message will show in the Console output tab. Otherwise, the message will be logged to the browser's console output. The log level and current program source line will prefix the written log message.

Syntax

Console.Log msg$[, logLevel$]

Parameters

  • The msg$ parameter contains the text which will be written to the console.
  • The optional logLevel$ parameter specifies the log level to use. If the specified log level severity is equal to or greater than the current log level the message will be written to the console. If not specified, this parameter defaults to INFO.

Examples

Example1: Write a log message to the console

Import Console From "lib/web/console.bas"

Console.LogLevel Console.DEBUG

Console.Log "This is an info message."
Console.Log "This is a trace message, it will be ignored.", Console.TRACE

See Also

Console.LogLevel Console.Echo