From 40046828bd24e561bc842d8638768c4a12be966c Mon Sep 17 00:00:00 2001 From: Pete Miller Date: Wed, 11 Dec 2024 19:47:20 -0800 Subject: [PATCH] log database title because of historical bad values due to ref expiring --- components/ai_chat/core/browser/ai_chat_database.cc | 2 ++ 1 file changed, 2 insertions(+) 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; }