Lucene.Net.Search.Function.TestCustomScoreQuery.LogResult C# (CSharp) Method

LogResult() private method

private LogResult ( System msg, IndexSearcher s, Query q, int doc, float score1 ) : void
msg System
s Lucene.Net.Search.IndexSearcher
q Lucene.Net.Search.Query
doc int
score1 float
return void
		private void  LogResult(System.String msg, IndexSearcher s, Query q, int doc, float score1)
		{
			QueryUtils.Check(q, s);
			Log(msg + " " + score1);
			Log("Explain by: " + q);
			Log(s.Explain(q, doc));
		}