LOGINFO: Difference between revisions

From QB64 Phoenix Edition Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
Line 31: Line 31:
; Example 1 : Writes a log message at the information level
; Example 1 : Writes a log message at the information level
{{CodeStart}}
{{CodeStart}}
{{Cl|_LOGINFO}} "This is a log message"
{{Cl|_LOGINFO}} {{Text|<nowiki>"This is a log message"</nowiki>|#FFB100}}
{{Cl|_LOGINFO}} "a= " + {{Cl|STR$}}(a)
{{Cl|_LOGINFO}} {{Text|<nowiki>"a= "</nowiki>|#FFB100}} + {{Cl|STR$}}(a)
{{CodeEnd}}
{{CodeEnd}}



Latest revision as of 14:17, 8 December 2024

The _LOGINFO statement writes a log message at the Information level.


Syntax

_LOGINFO message


Parameters

  • message is a string to write to the log output.


Description

  • See the page on the Logging system for more detailed usage information.


Availability


Examples

Example 1
Writes a log message at the information level
_LOGINFO "This is a log message"
_LOGINFO "a= " + STR$(a)


See also



Navigation:
Main Page with Articles and Tutorials
Keyword Reference - Alphabetical
Keyword Reference - By usage
Report a broken link