All Questions
2 questions
0
votes
2
answers
197
views
Difference between interaction log and "debug" or "application" log
Let's say I need two logs coming out of my application. One is for debugging issues and making sure the application runs correctly and the other is used for user statistics and general analysis of the ...
2
votes
1
answer
873
views
log method calls per object
How to log method calls on a per object basis for a particular class?
I.e. after instanciating a = myClass() I somehow want to keep a log for what methods have been called on a like
a.reverse()
a....