Lucene.Net.Index.SegmentInfos.Message C# (CSharp) Méthode

Message() private static méthode

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
Résultat void
        private static void Message(string message)
        {
            infoStream.WriteLine("SIS [" + Thread.CurrentThread.Name + "]: " + message);
        }