There is a Python package for SignalFx: link to GitHub source
In one of its files, it makes a _logger
object that uses Python's logging
library. The package has many _logger.debug()
statements that make it useful in debugging connectivity problems.
The code instantiates the _logger
as a global variable, like so:
_logger = logging.getLogger(__name__)
I have searched for a while, and can't figure out how to view the _logger.debug()
's output. How can I get the _logger
to print to stdout
? Or, where can I view the log statements?
Thank you in advance!