__init__.py 290 B

1234567891011
  1. import logging
  2. import sys
  3. def init_logging():
  4. """
  5. Temporary workaround for build timeouts by enabling logging to
  6. stdout so that travis doesn't think the build has hung.
  7. """
  8. logging.basicConfig(stream=sys.stdout)
  9. logging.getLogger(__name__).setLevel(logging.DEBUG)