예제 #1
0
 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"
     ) 
예제 #2
0
 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"))
예제 #3
0
 def error(self,*msg):
   ctx = self.control.ctx
   sys.stderr.write(color(" ! " + self.msg2str(msg) + "\n","red")) 
예제 #4
0
 def info(self,*msg):
   ctx = self.control.ctx
   sys.stderr.write(color(" - " + self.msg2str(msg) + "\n","blue"))
예제 #5
0
 def debug(self,*msg):
   ctx = self.control.ctx
   sys.stderr.write(color(" . " + self.msg2str(msg) + "\n","purple"))
예제 #6
0
 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"))
예제 #7
0
 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")
예제 #8
0
 def error(self, *msg):
     ctx = self.control.ctx
     sys.stderr.write(color(" ! " + self.msg2str(msg) + "\n", "red"))
예제 #9
0
 def debug(self, *msg):
     ctx = self.control.ctx
     sys.stderr.write(color(" . " + self.msg2str(msg) + "\n", "purple"))
예제 #10
0
 def info(self, *msg):
     ctx = self.control.ctx
     sys.stderr.write(color(" - " + self.msg2str(msg) + "\n", "blue"))