This page contains information on creating and assigning a logger of an index, as well as on the implementation of a custom logger.
Use of standard file logger
In order to save information about events and errors in an index into a file, you should use the standard file logger or your own custom logger. It is important to remember that each time you open an existing index, you must create and assign an instance of the logger again, because the logger is not saved. The good news is that the same code can be used to create a new index and open an existing one. In this case, when opening an existing index, a logger will be used from the index settings passed to the constructor, the remaining index settings will be loaded from disk.
The following example demonstrates the use of the standard file logger. The constructor parameters of this logger are the path to the log file and its maximum size in MB.
C#
stringindexFolder=@"c:\MyIndex\";stringdocumentsFolder=@"c:\MyDocuments\";stringquery="Einstein";stringlogPath=@"c:\Log.txt";IndexSettingssettings=newIndexSettings();settings.Logger=newFileLogger(logPath,4.0);// Specifying the path to the log file and a maximum length of 4 MBIndexindex=newIndex(indexFolder,settings);// Creating or loading an index from the specified folderindex.Add(documentsFolder);// Indexing documents from the specified folderSearchResultresult=index.Search(query);// Search in index
Implementing custom logger
Sometimes you may need to implement your own logger, for example, to display the log in the console. An example implementation of such a logger is presented below.