--- a
+++ b/utils/logger.py
@@ -0,0 +1,9 @@
+# utils/logger.py
+import logging
+
+def setup_logging():
+    """Configure logging settings"""
+    logging.basicConfig(
+        level=logging.INFO,
+        format='%(asctime)s - %(name)s - %(levelname)s - %(message)s'
+    )
\ No newline at end of file