コード例 #1
0
ファイル: eosf.py プロジェクト: andresberrios/eosfactory
 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)
コード例 #2
0
ファイル: eosf.py プロジェクト: andresberrios/eosfactory
 def DEBUG(self, msg):
     if msg and Verbosity.DEBUG in self.verbosity:
         cprint(
             cleos.heredoc(msg),
             self.debug_color)
コード例 #3
0
ファイル: eosf.py プロジェクト: andresberrios/eosfactory
 def OUT(self, msg):
     if msg and Verbosity.OUT in self.verbosity:
         print(cleos.heredoc(msg))
コード例 #4
0
ファイル: eosf.py プロジェクト: andresberrios/eosfactory
 def TRACE(self, msg):
     if msg and Verbosity.TRACE in self.verbosity:
         cprint(
             cleos.heredoc(msg),
             self.trace_color)
コード例 #5
0
ファイル: eosf.py プロジェクト: andresberrios/eosfactory
 def EOSF(self, msg):
     if msg and Verbosity.EOSF in self.verbosity:
         cprint(
             cleos.heredoc(msg),
             self.eosf_color)