How to log python exception ?
- by Maxim Veksler
Hi,
Coming from java, being familiar with logback I used to do
try {
...
catch (Exception e) {
log("Error at X", e);
}
I would like the same functionality of being able to log the exception and the stacktrace into a file.
How would you recommend me implementing this?
Currently using boto logging infrastructre, boto.log.info(...)
I've…