示例#1
0
    def _run(self):

        self._logging(logging.INFO)

        try:
            PeriodicCallback._run(self)

        finally:

            self._logging(logging.DEBUG)
示例#2
0
    def _run(self):

        self._logging(logging.INFO)

        try:
            PeriodicCallback._run(self)

        finally:

            self._logging(logging.DEBUG)
示例#3
0
    def _run(self):

        app_log.info(r'Run task {0:s}'.format(self.callback.__name__))

        return PeriodicCallback._run(self)
示例#4
0
 def _run(self):
     
     app_log.info(r'Run task %s'%(self.callback.__name__))
     
     return PeriodicCallback._run(self)