Beispiel #1
0
 def result(self, msg):
     msg = TimeFormat.timestamp() + '  RSLT: ' + str(msg)
     self.__print(msg)
     self.__write(msg)
Beispiel #2
0
 def error(self, msg):
     msg = TimeFormat.timestamp() + ' ERROR: ' + str(msg)
     self.__print(msg)
     self.__write(msg)
Beispiel #3
0
 def debug(self, msg):
     msg = TimeFormat.timestamp() + ' DEBUG: ' + str(msg)
     self.__print(msg)
     self.__write(msg)
Beispiel #4
0
 def warm(self, msg):
     msg = TimeFormat.timestamp() + '  WARM: ' + str(msg)
     self.__print(msg)
     self.__write(msg)
Beispiel #5
0
 def info(self, msg):
     msg = TimeFormat.timestamp() + '  INFO: ' + str(msg)
     self.__print(msg)
     self.__write(msg)
Beispiel #6
0
 def _print(msg):
     msg = TimeFormat.timestamp() + ' SYSTEM: ' + str(msg)
     print msg
Beispiel #7
0
 def __set_log_path():
     GlobalVariable.test_start_time = TimeFormat.time()
     GlobalVariable.test_log_path = join(
         GlobalVariable.log_folder,
         TimeFormat.timestamp())  # 如果是PC的话保存在当前目录的下LOG文件夹然后加上当前的时间戳
     makedirs(GlobalVariable.test_log_path)  # 在PC上创建LOG文件夹
Beispiel #8
0
def debug(msg):
    # pass
    msg = TimeFormat.debug_timestamp() + ' DEBUG: ' + str(msg)
    __print(msg)
    __write(msg)