1 # Copyright (C) Internet Systems Consortium, Inc. ("ISC") 2 # 3 # SPDX-License-Identifier: MPL-2.0 4 # 5 # This Source Code Form is subject to the terms of the Mozilla Public 6 # License, v. 2.0. If a copy of the MPL was not distributed with this 7 # file, you can obtain one at https://mozilla.org/MPL/2.0/. 8 # 9 # See the COPYRIGHT file distributed with this work for additional 10 # information regarding copyright ownership. 11 12 from .basic import ( 13 avoid_duplicated_logs, 14 deinit_module_logger, 15 deinit_test_logger, 16 init_conftest_logger, 17 init_module_logger, 18 init_test_logger, 19 debug, 20 info, 21 warning, 22 error, 23 critical, 24 ) 25 26 from .watchlog import WatchLogFromStart, WatchLogFromHere 27