Haven't worked a whole lot with loggers, but was wondering if the following is possible:
For debugging purposes, it seems like it'd be useful to have a way to log X number of events prior to a fatal exception (or some other level of priority). It's like the black box in the cockpit, storing the last few bits of data before the system crashes so that I can dig through the wreckage.
Is that doable currently? I realize it involves some complexities, but it would be useful.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
If i get it right: You want to save the last few output statements in a cache at that time when a exception raises, so you can concentrate to the last few lines ... or maybe safe them.
I think this would be a good idea, it may really help debugging.
yours
Martin.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Haven't worked a whole lot with loggers, but was wondering if the following is possible:
For debugging purposes, it seems like it'd be useful to have a way to log X number of events prior to a fatal exception (or some other level of priority). It's like the black box in the cockpit, storing the last few bits of data before the system crashes so that I can dig through the wreckage.
Is that doable currently? I realize it involves some complexities, but it would be useful.
Hi Scotty,
sorry for the late response (I had to write my final exams first).
I don't really get what you want. Could you explain it again in another way?
Greetings,
Simon
If i get it right: You want to save the last few output statements in a cache at that time when a exception raises, so you can concentrate to the last few lines ... or maybe safe them.
I think this would be a good idea, it may really help debugging.
yours
Martin.