Currently, calling profiling::scope! causes a panic if Tracy is present but not enabled. That macro apparently calls "span", which, in current versions of tracy-client (although not older ones) is documented as causing a panic if a Tracy client is not running. I think this feature was introduced when Tracy was modified so that you have to start it explicitly; it used to start automatically if compiled in.
So how can I disable Tracy tracing for production without putting #cfg around every call to profiling::scope!?