Home | History | Annotate | Download | only in distutils

Lines Matching refs:args

19     def _log(self, level, msg, args):
24 if args:
25 msg = msg % args
33 def log(self, level, msg, *args):
34 self._log(level, msg, args)
36 def debug(self, msg, *args):
37 self._log(DEBUG, msg, args)
39 def info(self, msg, *args):
40 self._log(INFO, msg, args)
42 def warn(self, msg, *args):
43 self._log(WARN, msg, args)
45 def error(self, msg, *args):
46 self._log(ERROR, msg, args)
48 def fatal(self, msg, *args):
49 self._log(FATAL, msg, args)