Lines Matching refs:log_path
131 def _initiateTestLogger(log_path, prefix=None, filename=None, log_severity="INFO"): argument
169 utils.create_dir(log_path)
176 addLogFile(log_path=log_path,
180 log.log_path = log_path
181 logging.log_path = log_path
217 def setupTestLogger(log_path, argument
237 utils.create_dir(log_path)
238 logger = _initiateTestLogger(log_path, prefix, filename, log_severity)
240 createLatestLogAlias(log_path)
241 return os.path.join(log_path, filename)
244 def addLogFile(log_path, filename=None, log_severity="INFO"): argument
259 fh = logging.FileHandler(os.path.join(log_path, filename))
263 return os.path.join(log_path, filename), fh
296 def log_path(self): member in LoggerProxy
298 return self.log.log_path