Skip to content

Commit

Permalink
Dont set log level for root logger (#767)
Browse files Browse the repository at this point in the history
  • Loading branch information
kigawas authored Aug 28, 2020
1 parent b782588 commit df81b16
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion uvicorn/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,6 @@ def configure_logging(self):
log_level = LOG_LEVELS[self.log_level]
else:
log_level = self.log_level
logging.getLogger("").setLevel(log_level)
logging.getLogger("uvicorn.error").setLevel(log_level)
logging.getLogger("uvicorn.access").setLevel(log_level)
logging.getLogger("uvicorn.asgi").setLevel(log_level)
Expand Down

0 comments on commit df81b16

Please sign in to comment.