diff --git a/components/ai_chat/core/browser/ai_chat_database.cc b/components/ai_chat/core/browser/ai_chat_database.cc index 941588cb8efa..6a4d2602f941 100644 --- a/components/ai_chat/core/browser/ai_chat_database.cc +++ b/components/ai_chat/core/browser/ai_chat_database.cc @@ -654,6 +654,8 @@ bool AIChatDatabase::AddConversationEntry( bool AIChatDatabase::UpdateConversationTitle(std::string_view conversation_uuid, std::string_view title) { DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_); + DVLOG(4) << __func__ << " for " << conversation_uuid << " with title " + << title; if (!LazyInit()) { return false; }