mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-04-12 14:02:47 +00:00
When using @persist, users had no way to discover where their flow state was being stored. The default SQLiteFlowPersistence uses appdirs which varies by platform, making the database location opaque. Changes: - Log db_path at INFO level when SQLiteFlowPersistence is initialized - Log storage location (db_path) after each state save in persist decorator - Show storage location in console output when verbose=True - Add 5 new tests covering persistence path discoverability Closes #5372 Co-Authored-By: João <joao@crewai.com>