Is there a way to determine Last Line which was executed before the crash?
Maybe there a script available which will add a Log() line before each line, but without breaking script functionality by checking syntax of each line.
For example, following will work
if a=b {
Log("SCRIPTNAME LINE# : if a=b {")
b := c
Log("SCRIPTNAME LINE# : b := c")
}
Log("SCRIPTNAME LINE# : }")
but following will be incorrect:if a=b
Log("SCRIPTNAME LINE# : if a=b")
b := c
Log("SCRIPTNAME LINE# : b := c")
probably additional information would be helpful too, like cpu/memory usage, current A_ThisFunction, etc.
Please share some experience to solve Crashing issues.






