def prettyJson( origin, message, dictionaryInstance, quote = c.DOUBLE_QUOTE, tabCount = 0, nullValue = c.NULL_VALUE, trueValue = c.TRUE_VALUE, falseValue = c.FALSE_VALUE, logLevel = LOG, condition = True ) : if condition : stdout, stderr = EnvironmentHelper.getCurrentSoutStatus() prettyJsonValue = StringHelper.prettyJson( dictionaryInstance, quote = quote, tabCount = tabCount, nullValue = nullValue, trueValue = trueValue, falseValue = falseValue, withColors = SettingHelper.activeEnvironmentIsLocal(), joinAtReturn = False ) LogHelperHelper.softLog(origin, StringHelper.join([message, c.COLON_SPACE, *prettyJsonValue]), logLevel) EnvironmentHelper.overrideSoutStatus(stdout, stderr)
def printTest(message, condition=False, muteStackTrace=False, newLine=True, margin=True, exception=None) : LogHelperHelper.printMessageLog(TEST, message, condition=condition, muteStackTrace=muteStackTrace, newLine=newLine, margin=margin, exception=exception)
def printWarning(message, condition=False, muteStackTrace=False, newLine=True, margin=True, exception=None) : LogHelperHelper.printMessageLog(WARNING, message, condition=condition, muteStackTrace=muteStackTrace, newLine=newLine, margin=margin, exception=exception)
def printFailure(message, condition=False, muteStackTrace=False, newLine=True, margin=True, exception=None) : LogHelperHelper.printMessageLog(FAILURE, message, condition=condition, muteStackTrace=muteStackTrace, newLine=newLine, margin=margin, exception=exception)
def printSuccess(message, condition=False, muteStackTrace=False, newLine=True, margin=True) : LogHelperHelper.printMessageLog(SUCCESS, message, condition=condition, muteStackTrace=muteStackTrace, newLine=newLine, margin=margin)
def printSetting(message, condition=False, muteStackTrace=False, newLine=True, margin=True) : LogHelperHelper.printMessageLog(SETTING, message, condition=condition, muteStackTrace=muteStackTrace, newLine=newLine, margin=margin)
def error(origin, message, exception, muteStackTrace=False, newLine=False) : LogHelperHelper.hardLog(origin, message, exception, ERROR, muteStackTrace=muteStackTrace, newLine=newLine)
def test(origin, message, exception=None, muteStackTrace=False, newLine=False) : LogHelperHelper.softLog(origin, message, TEST, muteStackTrace=muteStackTrace, newLine=newLine, exception=exception)
def wraper(origin, message, exception, muteStackTrace=False, newLine=False) : LogHelperHelper.hardLog(origin, message, exception, WRAPPER, muteStackTrace=muteStackTrace, newLine=newLine)
def failure(origin, message, exception, muteStackTrace=False, newLine=False) : LogHelperHelper.hardLog(origin, message, exception, FAILURE, muteStackTrace=muteStackTrace, newLine=newLine)
def warning(origin, message, exception=None, muteStackTrace=False, newLine=False) : LogHelperHelper.softLog(origin, message, WARNING, muteStackTrace=muteStackTrace, newLine=newLine, exception=exception)
def debug(origin, message, exception=None, muteStackTrace=False, newLine=False) : LogHelperHelper.softLog(origin, message, DEBUG, muteStackTrace=muteStackTrace, newLine=newLine, exception=exception)
def setting(origin, message, muteStackTrace=False, newLine=False) : LogHelperHelper.softLog(origin, message, SETTING, muteStackTrace=muteStackTrace, newLine=newLine)
def success(origin, message, muteStackTrace=False, newLine=False) : LogHelperHelper.softLog(origin, message, SUCCESS, muteStackTrace=muteStackTrace, newLine=newLine)
def log(origin, message, level=LOG, exception=None, muteStackTrace=False, newLine=False) : LogHelperHelper.softLog(origin, message, LOG, muteStackTrace=muteStackTrace, newLine=newLine, exception=exception)