Improved error key

This commit is contained in:
Armin Ronacher 2016-01-27 15:28:21 -08:00
parent 8412ac034e
commit d77dec802d
1 changed files with 2 additions and 1 deletions

View File

@ -285,7 +285,8 @@ class Client(object):
def _get_exception_key(self, exc_info):
return (
id(exc_info[1]),
id(exc_info[2]),
id(exc_info[2].tb_frame.f_code),
exc_info[2].tb_lasti,
)
def skip_error_for_logging(self, exc_info):