remove extra white space from log format (#12360)

This commit is contained in:
Stas Bekman
2021-06-25 13:20:14 -07:00
committed by GitHub
parent a3daabfe14
commit 4a872caef4
58 changed files with 59 additions and 59 deletions

View File

@@ -147,7 +147,7 @@ Here is an example of how this can be used in an application:
# Setup logging
logging.basicConfig(
format="%(asctime)s - %(levelname)s - %(name)s - %(message)s",
format="%(asctime)s - %(levelname)s - %(name)s - %(message)s",
datefmt="%m/%d/%Y %H:%M:%S",
handlers=[logging.StreamHandler(sys.stdout)],
)