mirror of
https://mau.dev/maunium/synapse.git
synced 2024-12-14 12:53:51 +01:00
Log stack traces when a missing opentracing span is detected (#10983)
Make it easier to track down where opentracing spans are going missing by including stack traces in the logs.
This commit is contained in:
parent
eda8c88b84
commit
660c8c1415
2 changed files with 2 additions and 0 deletions
1
changelog.d/10983.misc
Normal file
1
changelog.d/10983.misc
Normal file
|
@ -0,0 +1 @@
|
|||
Log stack traces when a missing opentracing span is detected.
|
|
@ -339,6 +339,7 @@ def ensure_active_span(message, ret=None):
|
|||
"There was no active span when trying to %s."
|
||||
" Did you forget to start one or did a context slip?",
|
||||
message,
|
||||
stack_info=True,
|
||||
)
|
||||
|
||||
return ret
|
||||
|
|
Loading…
Reference in a new issue