Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
kenken999
/
fastapi_django_main_live
like
6
Running
on
Zero
App
Files
Files
Community
c399afb
fastapi_django_main_live
/
routers
/
bunnkatu
/
mysite
/
logger.py
kenken999
d
3d2aa58
7 months ago
raw
Copy download link
history
blame
178 Bytes
import
logging
logger = logging.getLogger(__name__)
logger.setLevel(logging.ERROR)
handler = logging.StreamHandler()
handler.setLevel(logging.ERROR)
logger.addHandler(handler)