View Single Post
  #1  
Old 03-04-2005, 08:22 AM
Andrew Andrew is online now
Registered User
 
Join Date: 12-01-2004
Posts: 19
Post Xml logging problem

Our build procedure consists off one master build file that will call child build files when needed. The logging is turned on and set to XML type. We would like to log to one file instead of one log file per build file.

Everything works ok but when a call is made from a build file to a child build file the logging gets confused. As you can see the step Steps calls a child project file. And the log continues to log messages. The problem is that no closeing tag is added for the <build> entry.

Is my assesment correct? If so how can I fix this?


Code:
<step action='VisBuildPro Project' type='0' start='4/03/2005 13:57:48'>
	<name>Steps</name>
	
<build context='GUI' start='4/03/2005 13:57:50'>
	<name>\\SRVTCMT001\Build$\Installation\VisualBuildPro\steps.bld</name>
<step action='Group' type='0' start='4/03/2005 13:57:52'>
	<name>Step initialize</name>
<status code='0'>Completed</status>
</step>
Reply With Quote