Hi,
this may be a bit tall order and I am not sure if possible,
however I would like to know the state of objects at certain points.
Currently what I would do is something like��
self log: 'anObject someProperty:'; logCr: anObject someProperty.
however this is not very practical.
So I would like something like
self fronzenLog: anObject
and then I could inspect the logger and see the state of the whole objects.
Using debugger and stepping through it is not really practical because I need to observe several possible objects that are in this function at very different times.
Is this possible? Is there a better/somewhat better way to do something like this?
Any pointers appreciated.
Peter