Skip to content

Commit

Permalink
fix -Q for gevent
Browse files Browse the repository at this point in the history
  • Loading branch information
ali96343 committed Oct 24, 2023
1 parent 6c5280d commit 1962531
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions py4web/server_adapters.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ def gevent():

class GeventServer(ServerAdapter):
def run(self, app_handler):
logger = "default"
logger = None #"default"

if not self.quiet:
logger = logging_conf(
Expand Down Expand Up @@ -237,7 +237,7 @@ def geventWebSocketServer():

class GeventWebSocketServer(ServerAdapter):
def run(self, app_handler):
logger = "default"
logger = None #"default"

if not self.quiet:
logger = logging_conf(
Expand Down

0 comments on commit 1962531

Please sign in to comment.