Update src/utils.py
Browse files- src/utils.py +7 -0
src/utils.py
CHANGED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import logging
|
| 2 |
+
|
| 3 |
+
def setup_logging():
|
| 4 |
+
"""
|
| 5 |
+
Set up logging configuration.
|
| 6 |
+
"""
|
| 7 |
+
logging.basicConfig(level=logging.INFO)
|