Home > Mobile >  How to log / echo a string to the Result pane in the AppleScript Script Editor?
How to log / echo a string to the Result pane in the AppleScript Script Editor?

Time:12-18

How do I log a string to the Result pane in the Script Editor window with AppleScript? I tried this but it shows nothing:

log "my log message"

CodePudding user response:

You need to View > Show Log    ⌘3

The log message will be displayed in the Messages, Events, and Replies panes.

enter image description here

  • Related