Lucene.Net.Index.SegmentInfos.Message C# (CSharp) Method

Message() private static method

Prints the given message to the infoStream. Note, this method does not check for null infoStream. It assumes this check has been performed by the caller, which is recommended to avoid the (usually) expensive message creation.
private static Message ( string message ) : void
message string
return void
        private static void Message(string message)
        {
            infoStream.WriteLine("SIS [" + Thread.CurrentThread.Name + "]: " + message);
        }