コード例 #1
0
ファイル: log.py プロジェクト: AbdullZ7/ochDownloader
 def load_full_log(self):
     """"""
     try:
         with open(cons.LOG_FILE, "rb") as fh:
             lines = fh.read()
     except EnvironmentError as err:
         lines = str(err)
         #logger.warning("{0}".format(err))
     
     self.text_view.setPlainText(smart_unicode(lines))
コード例 #2
0
    def load_full_log(self):
        """"""
        try:
            with open(cons.LOG_FILE, "rb") as fh:
                lines = fh.read()
        except EnvironmentError as err:
            lines = str(err)
            #logger.warning("{0}".format(err))

        self.text_view.setPlainText(smart_unicode(lines))
コード例 #3
0
ファイル: log.py プロジェクト: AbdullZ7/ochDownloader
 def on_load(self):
     """
     load the last few lines of the file.log
     This method is suppose to be called on switch-tab event (main_gui)
     """
     try:
         with open(cons.LOG_FILE, "rb") as fh:
             last_lines = tail(fh) #misc function
     except EnvironmentError as err:
         last_lines = str(err)
         logger.warning("{0}".format(err))
     
     self.text_view.setPlainText(smart_unicode(last_lines))
コード例 #4
0
    def on_load(self):
        """
        load the last few lines of the file.log
        This method is suppose to be called on switch-tab event (main_gui)
        """
        try:
            with open(cons.LOG_FILE, "rb") as fh:
                last_lines = tail(fh)  #misc function
        except EnvironmentError as err:
            last_lines = str(err)
            logger.warning("{0}".format(err))

        self.text_view.setPlainText(smart_unicode(last_lines))