def debug(self,*msg): ctx = self.control.ctx sys.stderr.write( color("D:","purple") + str(self.prog) + ":" + str(ctx.file) + "[" + str(ctx.line) + "]" + ": " + color(self.msg2str(msg),"purple") + "\n" )
def error(self,*msg): ctx = self.control.ctx sys.stderr.write( color("E:" + str(self.prog) + ":" + str(ctx.file) + "[" + str(ctx.line) + "]" + ": " + self.msg2str(msg) + "\n", "red"))
def error(self,*msg): ctx = self.control.ctx sys.stderr.write(color(" ! " + self.msg2str(msg) + "\n","red"))
def info(self,*msg): ctx = self.control.ctx sys.stderr.write(color(" - " + self.msg2str(msg) + "\n","blue"))
def debug(self,*msg): ctx = self.control.ctx sys.stderr.write(color(" . " + self.msg2str(msg) + "\n","purple"))
def error(self, *msg): ctx = self.control.ctx sys.stderr.write( color( "E:" + str(self.prog) + ":" + str(ctx.file) + "[" + str(ctx.line) + "]" + ": " + self.msg2str(msg) + "\n", "red"))
def debug(self, *msg): ctx = self.control.ctx sys.stderr.write( color("D:", "purple") + str(self.prog) + ":" + str(ctx.file) + "[" + str(ctx.line) + "]" + ": " + color(self.msg2str(msg), "purple") + "\n")
def error(self, *msg): ctx = self.control.ctx sys.stderr.write(color(" ! " + self.msg2str(msg) + "\n", "red"))
def debug(self, *msg): ctx = self.control.ctx sys.stderr.write(color(" . " + self.msg2str(msg) + "\n", "purple"))
def info(self, *msg): ctx = self.control.ctx sys.stderr.write(color(" - " + self.msg2str(msg) + "\n", "blue"))