1# Copyright 2022 VMware, Inc.
2# SPDX-License-Identifier: Apache-2.0
3import logging
4from logging import NullHandler
5
6# Add a null handler to avoid 'No Handler Found' warnings if the library user hasn't
7# configured their own.
8logging.getLogger(__name__).addHandler(NullHandler())