Home
last modified time | relevance | path

Searched refs:logstrs (Results 1 – 1 of 1) sorted by relevance

/development/tools/axl/
Dlog.py38 def _log(self, *logstrs): argument
40 for ln in " ".join(map(str, logstrs)).split("\n"):
44 def debug(self, *logstrs): argument
45 self._log("D", *logstrs)
46 def info(self, *logstrs): argument
47 self._log("I", *logstrs)
48 def warn(self, *logstrs): argument
49 self._log("W", *logstrs)
50 def error(self, *logstrs): argument
51 self._log("E", *logstrs)