Python http.server.BaseHTTPRequestHandler.log_request() Examples

The following are 5 code examples of http.server.BaseHTTPRequestHandler.log_request(). You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may also want to check out all available functions/classes of the module http.server.BaseHTTPRequestHandler , or try the search function .
Example #1
Source File: server.py    From Fluid-Designer with GNU General Public License v3.0 5 votes vote down vote up
def log_request(self, code='-', size='-'):
        """Selectively log an accepted request."""

        if self.server.logRequests:
            BaseHTTPRequestHandler.log_request(self, code, size) 
Example #2
Source File: server.py    From Imogen with MIT License 5 votes vote down vote up
def log_request(self, code='-', size='-'):
        """Selectively log an accepted request."""

        if self.server.logRequests:
            BaseHTTPRequestHandler.log_request(self, code, size) 
Example #3
Source File: server.py    From ironpython3 with Apache License 2.0 5 votes vote down vote up
def log_request(self, code='-', size='-'):
        """Selectively log an accepted request."""

        if self.server.logRequests:
            BaseHTTPRequestHandler.log_request(self, code, size) 
Example #4
Source File: server.py    From Project-New-Reign---Nemesis-Main with GNU General Public License v3.0 5 votes vote down vote up
def log_request(self, code='-', size='-'):
        """Selectively log an accepted request."""

        if self.server.logRequests:
            BaseHTTPRequestHandler.log_request(self, code, size) 
Example #5
Source File: server.py    From android_universal with MIT License 5 votes vote down vote up
def log_request(self, code='-', size='-'):
        """Selectively log an accepted request."""

        if self.server.logRequests:
            BaseHTTPRequestHandler.log_request(self, code, size)