ALwrity Backend and Frontend - Stability and Error Handling Improvements

This commit is contained in:
ajaysi
2025-10-14 10:57:16 +05:30
parent b6debd80b7
commit 40fb6ac95b
31 changed files with 1491 additions and 592 deletions

View File

@@ -6,7 +6,7 @@ from datetime import datetime
Base = declarative_base()
logger.info("🔄 Loading UserBusinessInfo model...")
logger.debug("🔄 Loading UserBusinessInfo model...")
class UserBusinessInfo(Base):
__tablename__ = 'user_business_info'
@@ -35,4 +35,4 @@ class UserBusinessInfo(Base):
"updated_at": self.updated_at.isoformat() if self.updated_at else None,
}
logger.info("✅ UserBusinessInfo model loaded successfully!")
logger.debug("✅ UserBusinessInfo model loaded successfully!")