Bungee Logic : Statement : Log Message
Page Status: Beta
Back to Bungee Logic Statements
Contents |
[edit] Description
Logs a message.
May be added to an existing function, case, or iteration.
Useful for debugging.
[edit] Syntax
log message(message);
Where:
message Is a site designating the text to display in the message.
[edit] Logic
log message("Your message goes here");
[edit] Error Handling
-None-
[edit] Intrinsics
-None-
[edit] Properties
- Type — Specifies whether the message is displayed in a popup Dialog, to the Log window, or Both. Default is Dialog.
- DialogType — If Type is set to Dialog or Both, specifies if the dialog is a Message, Confirmation, or Prompt.
- Halt — If Type is set to Dialog or Both, and if checked, the application will stop processing until the dialog is dismissed.
- Log Type — If Type is set to Log or Both, specifies if the message in the log is categorized as Debug, Information, Warning, Error, or Fatal.
- Message — Specifies the text to be displayed.
- Confirmation — If DialogType is set to Confirmation, then specifies where to store the result of the confirmation. This value is a boolean.
- Prompt — If DialogType is set to Prompt, then specifies where to store the result of the prompt. This value is a string.
Special
- Throw Error — Generate an error that can be caught by the OnError statement.
Tab Title Bar
- Comment Out — Comments out the entire section of code.
- Set Breakpoint — Sets a breakpopint for debugging purposes.