14 lines
367 B
Python
14 lines
367 B
Python
"""
|
|
* SPDX-FileCopyrightText: 2023-2025 PeppermintOS Team
|
|
* (peppermintosteam@proton.me)
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*
|
|
* Lets Expose the logger functions
|
|
* These modules are only used for logging, it sets up what the logging
|
|
* levels should be, and the formated that they should be in.
|
|
"""
|
|
|
|
from .logger_config import (setup_logger, builder_logger)
|
|
|
|
|