Info.xml Format
The Info.xml file inside an .xjlog file provides an overview of the contents of the whole file. It has a top level LogFileInfo element and then the following elements:
- Version
- The version of the .xjlog file format, currently always 1.
- TestRunCount
- The number of test runs contained inside the file.
- ProjectPath
- The path to the project from which this log file was created. This is used by the Log File Viewer to be able to visualise circuit elements via the Layout Viewer, Schematic Viewer or Explorer.
- ExportedFromOutput
- This is set to false if the log file was created automatically while running tests, or to true if it was created by exporting the log file manually from the Run Tests Screen. When this is the case, the Run.xml file only contains the test output and very little of the rest of the information.
Example
<?xml version="1.0" encoding="UTF-8"?> <LogFileInfo> <Version>1</Version> <TestRunCount>1</TestRunCount> <ProjectPath>C:\Projects\Example Project.xjp</ProjectPath> <ExportedFromOutput>false</ExportedFromOutput> </LogFileInfo>
XJTAG v4.1.100