File size: 404 Bytes
d5b44da | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | # Copyright 2024 Deepgram SDK contributors. All Rights Reserved.
# Use of this source code is governed by a MIT license that can be found in the LICENSE file.
# SPDX-License-Identifier: MIT
import logging
from .verboselogs import VerboseLogger
from .verboselogs import (
NOTICE,
SPAM,
SUCCESS,
VERBOSE,
WARNING,
ERROR,
FATAL,
CRITICAL,
INFO,
DEBUG,
NOTSET,
)
|