__init__.py 743 B

1234567891011121314151617181920212223242526
  1. # -*- coding: utf-8 -*-
  2. # *****************************************************************************
  3. # Copyright (C) 2006-2020 Jorgen Stenarson. <jorgen.stenarson@bostream.nu>
  4. # Copyright (C) 2020 Bassem Girgis. <brgirgis@gmail.com>
  5. #
  6. # Distributed under the terms of the BSD License. The full license is in
  7. # the file COPYING, distributed as part of this software.
  8. # *****************************************************************************
  9. from .control import (
  10. start_file_log,
  11. start_socket_log,
  12. stop_file_log,
  13. stop_logging,
  14. stop_socket_log,
  15. )
  16. from .log import log
  17. __all__ = [
  18. "start_file_log",
  19. "start_socket_log",
  20. "stop_file_log",
  21. "stop_logging",
  22. "stop_socket_log",
  23. "log",
  24. ]