japronto icon indicating copy to clipboard operation
japronto copied to clipboard

respect Application(log_request=False) attribute

Open homm opened this issue 5 years ago • 0 comments

Otherwise, the following code is required:

class Application(Application):
    @property
    def _log_request(self):
        return False

    @_log_request.setter
    def _log_request(self, value):
        pass
    

app = Application(log_request=False)

homm avatar Jul 19 '20 13:07 homm