diff --git a/PROMS/fmtxml/RtfToSvg.cs b/PROMS/fmtxml/RtfToSvg.cs index 79ae2402..abd16d26 100644 --- a/PROMS/fmtxml/RtfToSvg.cs +++ b/PROMS/fmtxml/RtfToSvg.cs @@ -347,14 +347,17 @@ namespace fmtxml XmlDocument xDoc = new XmlDocument(); try { + //if (svgFileName.Contains("nsppe")) + // Console.WriteLine("stop"); xDoc.LoadXml(Svg); + AppendPlantSpecific(svgFileName, xDoc); + xDoc.Save(outFile.FullName); } catch (Exception ex) { + Console.WriteLine("Error generating {0}", svgFileName); Console.WriteLine("ex = {0}", ex); } - AppendPlantSpecific(svgFileName, xDoc); - xDoc.Save(outFile.FullName); } } }