def ERROR(self, msg): msg = colored( "ERROR:\n{}".format(cleos.heredoc(msg)), self.error_color) global _is_throw_error if _is_throw_error: raise Exception(msg) else: print(msg)
def DEBUG(self, msg): if msg and Verbosity.DEBUG in self.verbosity: cprint( cleos.heredoc(msg), self.debug_color)
def OUT(self, msg): if msg and Verbosity.OUT in self.verbosity: print(cleos.heredoc(msg))
def TRACE(self, msg): if msg and Verbosity.TRACE in self.verbosity: cprint( cleos.heredoc(msg), self.trace_color)
def EOSF(self, msg): if msg and Verbosity.EOSF in self.verbosity: cprint( cleos.heredoc(msg), self.eosf_color)