Returns or sets a String value specifying the directory in which the server saves log files.
Syntax
Logging.Directory( LogFileDir )
Parameters
LogFileDir
The directory in which log files are saved.
Example
The following code displays the current serverside logging directory (if it is enabled).
Sub displayLoggingDirectory(server As String)
Dim logging As IMSrvLogging
MediaServer1.SetServer server
Set logging = MediaServer1.logging
If (logging.Enabled) Then
MsgBox(logging.Directory)
End If
End Sub
[Previous][Next]