mirror of
https://pagure.io/fm-orchestrator.git
synced 2026-02-03 05:03:43 +08:00
Most of the code are moved to dedicated subpackages, but some others can't due to the cycle dependencies. Signed-off-by: Chenxiong Qi <cqi@redhat.com>
13 lines
355 B
Python
13 lines
355 B
Python
# -*- coding: utf-8 -*-
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
from module_build_service.common.config import conf
|
|
from module_build_service.common import logger
|
|
|
|
__all__ = ('conf', 'log', 'build_logs')
|
|
|
|
logger.init_logging(conf)
|
|
log = logger.MBSLogger()
|
|
build_logs = logger.ModuleBuildLogs(
|
|
conf.build_logs_dir, conf.build_logs_name_format, conf.log_level)
|