Closed
Description
Linux, python3.9
Steps to reproduce
In a fresh venv
pip install opentelemetry-distro opentelemetry-instrumentation
opentelemetry-instrument python -c 'import logging; logger = logging.getLogger("foo"); logger.error("oh no")'
What is the expected behavior?
See the error printed to the console
What is the actual behavior?
No output
Additional context
I believe the LogHandler is being installed on the root logger, but there is no log processor/exporter. Which causes logging to be no-op!