Arbortext IsoDraw > Macro Language Reference > 3D and User Interaction Commands > Further Macro Commands > Log
  
Log
With the command LOG you can write your own messages into the log file.Within the Arbortext IsoDraw working folder you can find a file named macro.log. All errors and warnings which occur during the execution of a macro are written into that file by the Arbortext IsoDraw Macro Language.
LOG"message"
message
Message written into the macro.log file.
LOG "Demo finished"

#this also works
FOR i=0 TO 10
LOG i
END FOR