diff --git a/lib/services/semantic_search/semantic_search_service.dart b/lib/services/semantic_search/semantic_search_service.dart index b78951be89a3702c4c43fc14425d1b1978c99157..203729990c3919b031a9df41f405c3b65ba8f486 100644 --- a/lib/services/semantic_search/semantic_search_service.dart +++ b/lib/services/semantic_search/semantic_search_service.dart @@ -117,6 +117,7 @@ class SemanticSearchService { return _ongoingRequest!; } else { // If there's an ongoing request, create or replace the nextCompleter. + _logger.info("Queuing query $query"); await _nextQuery?.completer.future .timeout(const Duration(seconds: 0)); // Cancels the previous future. _nextQuery = PendingQuery(query, Completer>());