Return-Path: X-Original-To: apmail-lucenenet-commits-archive@www.apache.org Delivered-To: apmail-lucenenet-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 5DCB410BD1 for ; Sat, 7 Mar 2015 19:29:58 +0000 (UTC) Received: (qmail 56317 invoked by uid 500); 7 Mar 2015 19:29:58 -0000 Delivered-To: apmail-lucenenet-commits-archive@lucenenet.apache.org Received: (qmail 56279 invoked by uid 500); 7 Mar 2015 19:29:58 -0000 Mailing-List: contact commits-help@lucenenet.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: lucene-net-dev@lucenenet.apache.org Delivered-To: mailing list commits@lucenenet.apache.org Received: (qmail 56270 invoked by uid 99); 7 Mar 2015 19:29:58 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 07 Mar 2015 19:29:58 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id BEA30E0EB5; Sat, 7 Mar 2015 19:29:57 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: synhershko@apache.org To: commits@lucenenet.apache.org Date: Sat, 07 Mar 2015 19:29:58 -0000 Message-Id: <20ff2e3af30d45d6b92ac7dc270b88cf@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [2/2] lucenenet git commit: output deleted ids for easier debugging output deleted ids for easier debugging Project: http://git-wip-us.apache.org/repos/asf/lucenenet/repo Commit: http://git-wip-us.apache.org/repos/asf/lucenenet/commit/6bbe71ff Tree: http://git-wip-us.apache.org/repos/asf/lucenenet/tree/6bbe71ff Diff: http://git-wip-us.apache.org/repos/asf/lucenenet/diff/6bbe71ff Branch: refs/heads/master Commit: 6bbe71ffe4b450a830097adb137adb6fb4c76196 Parents: 80bcdfa Author: Laimonas Simutis Authored: Sat Mar 7 14:05:33 2015 -0500 Committer: Laimonas Simutis Committed: Sat Mar 7 14:05:33 2015 -0500 ---------------------------------------------------------------------- .../Index/ThreadedIndexingAndSearchingTestCase.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/lucenenet/blob/6bbe71ff/src/Lucene.Net.TestFramework/Index/ThreadedIndexingAndSearchingTestCase.cs ---------------------------------------------------------------------- diff --git a/src/Lucene.Net.TestFramework/Index/ThreadedIndexingAndSearchingTestCase.cs b/src/Lucene.Net.TestFramework/Index/ThreadedIndexingAndSearchingTestCase.cs index f329dfd..9aad57a 100644 --- a/src/Lucene.Net.TestFramework/Index/ThreadedIndexingAndSearchingTestCase.cs +++ b/src/Lucene.Net.TestFramework/Index/ThreadedIndexingAndSearchingTestCase.cs @@ -736,7 +736,7 @@ namespace Lucene.Net.Index TopDocs hits = s.Search(new TermQuery(new Term("docid", stringID)), 1); if (hits.TotalHits != 1) { - Console.WriteLine("doc id=" + stringID + " is not supposed to be deleted, but got hitCount=" + hits.TotalHits + "; delIDs=" + delIDs); + Console.WriteLine("doc id=" + stringID + " is not supposed to be deleted, but got hitCount=" + hits.TotalHits + "; delIDs=" + string.Join(",", delIDs.ToArray())); doFail = true; } }