Spaces:
Sleeping
Sleeping
| """ | |
| Logger Configuration | |
| """ | |
| import logging | |
| import sys | |
| logging.basicConfig( | |
| level=logging.INFO, | |
| format="%(asctime)s - %(name)s - %(levelname)s - %(message)s", | |
| handlers=[ | |
| logging.StreamHandler(sys.stdout) | |
| ] | |
| ) | |
| logger = logging.getLogger("amkyawdev") | |