| 1234567891011121314151617181920212223242526 |
- # -*- coding: utf-8 -*-
- # *****************************************************************************
- # Copyright (C) 2006-2020 Jorgen Stenarson. <jorgen.stenarson@bostream.nu>
- # Copyright (C) 2020 Bassem Girgis. <brgirgis@gmail.com>
- #
- # Distributed under the terms of the BSD License. The full license is in
- # the file COPYING, distributed as part of this software.
- # *****************************************************************************
- from .control import (
- start_file_log,
- start_socket_log,
- stop_file_log,
- stop_logging,
- stop_socket_log,
- )
- from .log import log
- __all__ = [
- "start_file_log",
- "start_socket_log",
- "stop_file_log",
- "stop_logging",
- "stop_socket_log",
- "log",
- ]
|