When I export a speech application in this new version of OD, it apparently is modifying a file called ddlog4j2.xml by commenting out the <appender-ref ref="console-log"/>, which I understand is by design. However, if you mod the application and export it again, it adds a comment to the comment, causing errors on the server. If you export again it adds a comment to the comment to the comment and your file starts looking like this.
here is the file after the 2nd export, i've underlined the lines for your reference.
<Loggers>
<Logger name="Dialog.Designer.TraceWriter" level="debug" additivity="false">
<appender-ref ref="trace"/>
<!--<!-- <appender-ref ref="console-log"/>-->-->
</Logger>
<Logger name="Dialog.Designer.ReportWriter" level="debug" additivity="false">
<appender-ref ref="report"/>
<!--<!-- <appender-ref ref="console-log"/>-->-->
</Logger>
<Root level="debug" additivity="false">
<!--<!-- <AppenderRef ref="console-log"/>-->-->
</Root>
</Loggers>
here is the file after the 2nd export, i've underlined the lines for your reference.
<Loggers>
<Logger name="Dialog.Designer.TraceWriter" level="debug" additivity="false">
<appender-ref ref="trace"/>
<!--<!-- <appender-ref ref="console-log"/>-->-->
</Logger>
<Logger name="Dialog.Designer.ReportWriter" level="debug" additivity="false">
<appender-ref ref="report"/>
<!--<!-- <appender-ref ref="console-log"/>-->-->
</Logger>
<Root level="debug" additivity="false">
<!--<!-- <AppenderRef ref="console-log"/>-->-->
</Root>
</Loggers>
Comment