BUG: Lucene.Net.Core.Index.CheckIndex: Fixed diagnostics information printout 
to show the data rather than the IDictionary type it is stored in


Project: http://git-wip-us.apache.org/repos/asf/lucenenet/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucenenet/commit/c1d5328a
Tree: http://git-wip-us.apache.org/repos/asf/lucenenet/tree/c1d5328a
Diff: http://git-wip-us.apache.org/repos/asf/lucenenet/diff/c1d5328a

Branch: refs/heads/api-work
Commit: c1d5328a641ba807437e1bf1e2e448c3fb12c8c4
Parents: eac64ed
Author: Shad Storhaug <[email protected]>
Authored: Sun Mar 5 06:03:52 2017 +0700
Committer: Shad Storhaug <[email protected]>
Committed: Sun Mar 5 17:08:48 2017 +0700

----------------------------------------------------------------------
 src/Lucene.Net.Core/Index/CheckIndex.cs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucenenet/blob/c1d5328a/src/Lucene.Net.Core/Index/CheckIndex.cs
----------------------------------------------------------------------
diff --git a/src/Lucene.Net.Core/Index/CheckIndex.cs 
b/src/Lucene.Net.Core/Index/CheckIndex.cs
index 0468e20..519179a 100644
--- a/src/Lucene.Net.Core/Index/CheckIndex.cs
+++ b/src/Lucene.Net.Core/Index/CheckIndex.cs
@@ -729,7 +729,7 @@ namespace Lucene.Net.Index
                     segInfoStat.Diagnostics = diagnostics;
                     if (diagnostics.Count > 0)
                     {
-                        Msg(infoStream, "    diagnostics = " + diagnostics);
+                        Msg(infoStream, "    diagnostics = " + 
Arrays.ToString(diagnostics));
                     }
 
                     if (!info.HasDeletions)

Reply via email to