Lines Matching refs:msg
56 def Progress(msg, warning=False, trailer='...'): argument
64 _progress = msg + trailer
72 def _Output(level, msg, color=None): argument
84 msg = _color.Color(color, msg)
85 _stdout.write(msg + '\n')
87 def DoOutput(level, msg): argument
95 _Output(level, msg)
97 def Error(msg): argument
103 _Output(0, msg, _color.RED)
105 def Warning(msg): argument
111 _Output(1, msg, _color.YELLOW)
113 def Notice(msg): argument
119 _Output(2, msg)
121 def Info(msg): argument
127 _Output(3, msg)
129 def Debug(msg): argument
135 _Output(4, msg)
137 def UserOutput(msg): argument
144 _Output(0, msg)