예제 #1
0
 def run_qtile():
     try:
         init_log(logging.INFO, log_path=None)
         q = QtileManager(config_class(), self.display, self.sockfile)
         q.loop()
     except Exception:
         wpipe.send(traceback.format_exc())
예제 #2
0
 def run_qtile():
     try:
         init_log(logging.INFO, log_path=None)
         q = QtileManager(config_class(), self.display, self.sockfile)
         q.loop()
     except Exception:
         wpipe.send(traceback.format_exc())
예제 #3
0
파일: utils.py 프로젝트: Davidbrcz/qtile
 def runQtile():
     try:
         q = Qtile(config, self.display, self.sockfile,
                   log=init_log(logging.INFO, log_path=self.logfile))
         q.loop()
     except Exception:
         wpipe.send(traceback.format_exc())
         print("--------------------- >> begin qtile traceback << --------------------")
         print(traceback.format_exc())
         print("-------------------- >> begin qtile traceback << ---------------------")
예제 #4
0
파일: utils.py 프로젝트: daineal/qtile
 def runQtile():
     try:
         init_log(logging.INFO, log_path=self.logfile, log_color=False)
         q = Qtile(config, self.display, self.sockfile)
         q.loop()
     except Exception:
         wpipe.send(traceback.format_exc())
         with open(self.logfile, 'a') as f:
             f.write("--------------------- >> begin qtile traceback << --------------------")
             f.write(traceback.format_exc())
             f.write("-------------------- >> begin qtile traceback << ---------------------")
예제 #5
0
 def runQtile():
     try:
         init_log(logging.INFO, log_path=self.logfile, log_color=False)
         q = Qtile(config, self.display, self.sockfile)
         q.loop()
     except Exception:
         wpipe.send(traceback.format_exc())
         with open(self.logfile, 'a') as f:
             f.write(
                 "--------------------- >> begin qtile traceback << --------------------"
             )
             f.write(traceback.format_exc())
             f.write(
                 "-------------------- >> begin qtile traceback << ---------------------"
             )
예제 #6
0
파일: utils.py 프로젝트: montiniz/qtile
 def runQtile():
     try:
         q = Qtile(config,
                   self.display,
                   self.sockfile,
                   log=init_log(logging.INFO, log_path=self.logfile))
         q.loop()
     except Exception:
         wpipe.send(traceback.format_exc())
         print(
             "--------------------- >> begin qtile traceback << --------------------"
         )
         print(traceback.format_exc())
         print(
             "-------------------- >> begin qtile traceback << ---------------------"
         )