mirror of
https://github.com/open-telemetry/opentelemetry-python-contrib.git
synced 2025-07-29 21:23:55 +08:00
8 lines
151 B
Python
8 lines
151 B
Python
import logging
|
|
|
|
from ddtrace import tracer
|
|
|
|
if __name__ == '__main__':
|
|
assert not tracer.log.isEnabledFor(logging.DEBUG)
|
|
print('Test success')
|