mirror of
https://github.com/openSUSE/osc.git
synced 2024-12-25 17:36:13 +01:00
Add functions for printing to stdout or debug outputs
This commit is contained in:
parent
d81c688759
commit
78c3cf1c4c
@ -3,5 +3,7 @@
|
||||
#
|
||||
# The cherry-picked imports will be the supported API.
|
||||
|
||||
from .common import print_msg
|
||||
from .common import format_msg_project_package_options
|
||||
from .package import ApiPackage
|
||||
from .request import forward_request
|
||||
|
35
osc/_private/common.py
Normal file
35
osc/_private/common.py
Normal file
@ -0,0 +1,35 @@
|
||||
import sys
|
||||
|
||||
|
||||
def print_msg(msg, print_to="debug"):
|
||||
from .. import conf
|
||||
|
||||
if print_to is None:
|
||||
return
|
||||
elif print_to == "debug":
|
||||
if conf.config["debug"]:
|
||||
print(f"DEBUG: {msg}", file=sys.stderr)
|
||||
elif print_to == "stdout":
|
||||
print(msg)
|
||||
else:
|
||||
raise ValueError(f"Invalid value of the 'output' option: {output}")
|
||||
|
||||
|
||||
def format_msg_project_package_options(msg, project=None, package=None, **options):
|
||||
"""
|
||||
Format msg, project, package and options into a meaningful message
|
||||
that can be printed out directly or as a debug message.
|
||||
"""
|
||||
if project:
|
||||
msg += f" project: '{project}'"
|
||||
|
||||
if package:
|
||||
msg += f" package: '{package}'"
|
||||
|
||||
msg_options = [key.replace("_", "-") for key, value in options.items() if value]
|
||||
if msg_options:
|
||||
msg_options.sort()
|
||||
msg_options_str = ", ".join(msg_options)
|
||||
msg += f" options: {msg_options_str}"
|
||||
|
||||
return msg
|
Loading…
Reference in New Issue
Block a user