twisted.application.app.initialLog - python examples

Here are the examples of the python api twisted.application.app.initialLog taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

2 Examples 7

3 View Complete Implementation : _twistd_unix.py
Copyright MIT License
Author : adde88
    def preApplication(self):
        """
        Do pre-application-creation setup.
        """
        checkPID(self.config['pidfile'])
        self.config['nodaemon'] = (self.config['nodaemon'] 
                                   or self.config['debug'])
        self.oldstdout = sys.stdout
        self.oldstderr = sys.stderr
        startLogging(self.config['logfile'], self.config['syslog'],
                     self.config['prefix'], self.config['nodaemon'])
        app.initialLog()

3 View Complete Implementation : _twistw.py
Copyright MIT License
Author : adde88
    def preApplication(self):
        """
        Do pre-application-creation setup.
        """
        self.oldstdout = sys.stdout
        self.oldstderr = sys.stderr
        startLogging(self.config['logfile'])
        app.initialLog()
        os.chdir(self.config['rundir'])