Logging Offline Results Processing Utility Messages to a File
- Updated2024-11-26
- 1 minute(s) read
Logging Offline Results Processing Utility Messages to a File
Run the TestStand Offline Results Processing Utility with a redirection operator to store a log file of the information the utility writes to the command-line standard output. Refer to Microsoft documentation for more information about using command redirection operators.
For example, use the following command to append all information or higher level messages to the end of a file named logfile.txt:
OfflineResultsProcessingUtility.exe /log-level Info >> logfile.txt
Use the following command to log all error or higher level messages to a file named logfile.txt, overwriting the file if it already exists:
OfflineResultsProcessingUtility.exe /log-level Error > logfile.txt