Browse Source
The logger module lacked documentation explaining its purpose as the default logging provider for FastAPI applications.pull/15652/head
1 changed files with 7 additions and 0 deletions
@ -1,3 +1,10 @@ |
|||||
|
""" |
||||
|
Default logger for FastAPI. |
||||
|
|
||||
|
Provides a pre-configured logger instance named "fastapi" for internal |
||||
|
logging throughout the framework. |
||||
|
""" |
||||
|
|
||||
import logging |
import logging |
||||
|
|
||||
logger = logging.getLogger("fastapi") |
logger = logging.getLogger("fastapi") |
||||
|
|||||
Loading…
Reference in new issue