NisHera
9 years agoValued Contributor
Python Log message pointer
I have following code in python
class position: def __init__(self): # do nothing Log.Message("class inits") def abc(self): A = "ABC" return A def runme(): positionOBJ = position() Log.Message(str(positionOBJ.abc()))
when I run I got two messages
class inits
ABC
when duble click on log result "class inits" it will higlight Log message inside class -OK
but when duble click on log results "ABC" will highlight Return statement inside class - was expecting to highlight on last line of code
it is a bug ?