The OpenTelemetry console output with tracing details is printed when the verbose argument is set to True in the phoenix.otel.register() function. To hide this output, ensure you do not set verbose=True (either omit the argument or set verbose=False) when calling register() in your code. By default, this output is not shown unless verbose is enabled[^1^][^2^].Example: LBKSfrom phoenix.otel import register tracer_provider = register(verbose=False) # or simply omit the verbose argumentLBKSWould you like more detail?Sources:
- https://docs.arize.com/phoenix/tracing/how-to-tracing/advanced/suppress-tracing
- https://arize-ai.slack.com/archives/C04R3GXC8HK/p1740444965.315529
馃挕聽Hint: Mention RunLLM in the thread for followups.