This property specifies the location in the file system where the catalog build server log files are stored.
Syntax
IBuildServer.DefaultLogsLocation
Remarks
If you specify a directory that does not exist, Search creates it.
Example
The following example sets the default catalog build server log file location to D:\Catalogs\Logs.
Option Explicit
On Error Resume Next
Dim objSearchAdmin, objBuildServer
Set objSearchAdmin = CreateObject("Search.SearchAdmin.1")
Set objBuildServer = objSearchAdmin.BuildServer
objBuildServer.DefaultLogsLocation = "D:\Catalogs\Logs"
'Release objects
Set objBuildServer = Nothing
Set objSearchAdmin = Nothing
See Also