feat: initial commit
This commit is contained in:
commit
075939142f
63 changed files with 9494 additions and 0 deletions
28
logging.ini
Normal file
28
logging.ini
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
[loggers]
|
||||
keys=root,uvicorn
|
||||
|
||||
[handlers]
|
||||
keys=console
|
||||
|
||||
[formatters]
|
||||
keys=standard
|
||||
|
||||
[logger_root]
|
||||
level=INFO
|
||||
handlers=console
|
||||
formatter=standard
|
||||
|
||||
[logger_uvicorn]
|
||||
propagate=0
|
||||
handlers=console
|
||||
formatter=standard
|
||||
qualname=uvicorn
|
||||
|
||||
[handler_console]
|
||||
class=logging.StreamHandler
|
||||
level=DEBUG
|
||||
formatter=standard
|
||||
stream=ext://sys.stderr
|
||||
|
||||
[formatter_standard]
|
||||
format=[%(asctime)s] [%(levelname)s] [%(name)s] %(message)s
|
||||
Loading…
Add table
Add a link
Reference in a new issue