You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
raiseAssertionError("Arrived at code in %s() which was marked unreachable."%frame.f_code.co_name)
114
+
raiseAssertionError("Arrived at code in %s() which was marked unreachable on %s."%(frame.f_code.co_name, date))
115
115
else:
116
116
# build a simulated traceback object
117
117
tb=build_traceback(stack)
@@ -120,5 +120,6 @@ def unreachable():
120
120
forkeyin [ 'request', 'status_code', ]:
121
121
ifkeyinframe.f_locals:
122
122
extra[key] =frame.f_locals[key]
123
-
logger.error("Arrived at code in %s() which was marked unreachable.", frame.f_code.co_name, exc_info=(AssertionError, frame.f_code.co_name, tb), extra=extra)
123
+
logger.error("Arrived at code in %s() which was marked unreachable on %s."% (frame.f_code.co_name, date),
0 commit comments