Beispiel #1
0
def error(texto=""):
    try:
        bridge.log_info("######## ERROR #########",'Error')
        bridge.log_info(get_caller(texto),'Error')
    except:
        pass
Beispiel #2
0
def info(texto=""):
    try:
        bridge.log_info(get_caller(texto))
    except:
        pass
Beispiel #3
0
def debug(texto=""):
    try:
        bridge.log_info("######## DEBUG #########",'Debug')
        bridge.log_info(get_caller(texto),'Debug')
    except:
        pass
Beispiel #4
0
def info(texto=""):
    try:
        bridge.log_info(texto)
    except:
        pass
Beispiel #5
0
def info(texto):
    try:
        bridge.log_info( texto )
    except:
        pass
Beispiel #6
0
def error(texto):
    try:
        bridge.log_info(texto)
    except:
        pass
Beispiel #7
0
def debug(texto):
    try:
        bridge.log_info(texto)
    except:
        pass
Beispiel #8
0
def error(texto=""):
    try:
        bridge.log_info("######## ERROR #########", 'Error')
        bridge.log_info(get_caller(texto), 'Error')
    except:
        pass
Beispiel #9
0
def debug(texto=""):
    try:
        bridge.log_info("######## DEBUG #########", 'Debug')
        bridge.log_info(get_caller(texto), 'Debug')
    except:
        pass
Beispiel #10
0
def info(texto=""):
    try:
        bridge.log_info(get_caller(texto))
    except:
        pass