Initial commit
This commit is contained in:
9
uv_app/logging_config.py
Normal file
9
uv_app/logging_config.py
Normal file
@@ -0,0 +1,9 @@
|
||||
import logging
|
||||
|
||||
LOGGER = logging.getLogger(__name__)
|
||||
|
||||
logging.basicConfig(
|
||||
format="%(asctime)s [%(levelname)s] - <%(name)s> - %(message)s",
|
||||
level=logging.INFO,
|
||||
handlers=[logging.StreamHandler()],
|
||||
)
|
||||
Reference in New Issue
Block a user