示例#1
0
文件: Print.py 项目: yukun451/nut
def debug(s):
    if not silent and enableDebug:
        Status.print_(s)
示例#2
0
文件: Print.py 项目: yukun451/nut
def error(s):
    if not silent and enableError:
        Status.print_(s)
示例#3
0
文件: Print.py 项目: yukun451/nut
def warning(s):
    if not silent and enableWarning:
        Status.print_(s)
示例#4
0
文件: Print.py 项目: yukun451/nut
def info(s):
    if not silent and enableInfo:
        Status.print_(s)