SFTP Object
 
Syntax
 
SFTP.DebugLogFilePath As String
 
Description
If set to a file path, causes each Chilkat method or property call to automatically append it's LastErrorText to the specified log file. The information is appended such that if a hang or crash occurs, it is possible to see the context in which the problem occurred, as well as a history of all Chilkat calls up to the point of the problem. The VerboseLogging property can be set to provide more detailed information.
This property is typically used for debugging the rare cases where a Chilkat method call hangs or generates an exception that halts program execution (i.e. crashes). A hang or crash should generally never happen. The typical causes of a hang are:
 
  • a timeout related property was set to 0 to explicitly indicate that an infinite timeout is desired,
  • the hang is actually a hang within an event callback (i.e. it is a hang within the application code), or
  • there is an internal problem (bug) in the Chilkat code that causes the hang.
 
See Also