This is an automated email from the ASF dual-hosted git repository. nightowl888 pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/lucenenet.git
commit 70b00eea2457558be6bb14523dd46e34df27760b Author: Shad Storhaug <[email protected]> AuthorDate: Thu Oct 31 04:45:51 2019 +0700 Lucene.Net.Tests.Grouping.GroupFacetCollectorTest: Fixed logging print issue --- src/Lucene.Net.Tests.Grouping/GroupFacetCollectorTest.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Lucene.Net.Tests.Grouping/GroupFacetCollectorTest.cs b/src/Lucene.Net.Tests.Grouping/GroupFacetCollectorTest.cs index 03faa63..dd2605c 100644 --- a/src/Lucene.Net.Tests.Grouping/GroupFacetCollectorTest.cs +++ b/src/Lucene.Net.Tests.Grouping/GroupFacetCollectorTest.cs @@ -697,7 +697,7 @@ namespace Lucene.Net.Search.Grouping if (VERBOSE) { - Console.WriteLine(" doc content=" + contentStr + " group=" + (groupValue == null ? "null" : groupValue) + " facetVals=" + facetVals); + Console.WriteLine(" doc content=" + contentStr + " group=" + (groupValue == null ? "null" : groupValue) + " facetVals=" + Collections.ToString(facetVals)); } if (groupValue != null)
