IZfePropertyKeysLogPath Property |
The key value for the log path. The specified path must exist.
Namespace:
MicroFocus.ZFE.Connector
Assembly:
MicroFocus.ZFE.Connector (in MicroFocus.ZFE.Connector.dll) Version: 2.1.1566.0 (2.1.1566.0)
Syntax ReadOnly Property LogPath As String
Get
Property Value
Type:
StringRemarks
If a LogPath value is not set log messages will be sent to the system debugger.
The file created at this location is a rotating log file named "connector.log".
Log files are archived daily and retained for a period of 1 week.
Examples
Visual Basic for Applications:
Dim props As ZfeProperties
Dim propKeys As ZfePropertyKeys
Set props = new ZfeProperties()
Set propKeys = new ZfePropertyKeys()
props.SetProperty propKeys.LogPath, Environ$("TEMP")
C#:
IZfeProperties props = new ZfeProperties();
props.SetProperty(ZfePropertyKeys.LogPathKey, Path.GetTempPath());
See Also