SeeTestAutomation- StopLoggingDevice
info
Please note that this tool is classified as a Legacy tool. We recommend transitioning to our updated solutions to maintain optimal performance and security in your workflows. For more information on this matter, please reach out to technical support .
Description
Stops writing device log to file. This does nothing unless StartLoggingDevice was called first.
The command returns the full path of the log file.
Parameters
No parameters
Usage
Use at any point after calling StartLoggingDevice to stop writing the log to file.
Code Examples
Java Example
client.startLoggingDevice("c:\\logs);
client.stopLoggingDeviced();
C# Example Expand source
client.StartLoggingDevice("c:\\logs);
client.StopLoggingDeviced();
VBScript Example Expand source
client.StartLoggingDevice "C:\\Logs"
client.StopLoggingDevice
Python Example Expand source
self.client.startLoggingDevice("C:\\Logs")
self.client.stopLoggingDevice()
Perl Example Expand source
$client->startLoggingDevice("C:\\Logs");
$client->stopLoggingDevice();