Exporting Logs to a File
Copyright © Cloud Software Group, Inc. All rights reserved.
You can update the logback.xml file to export plug-in logs to a file.
<appender name="FILE" class="ch.qos.logback.core.FileAppender">
<file>c:/bw6-swift.log</file>
<encoder>
<pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36}-%msg%n</pattern>
</encoder>
</appender>
The value of the file element is the absolute path of the file that stores the exported log.
<logger name="com.tibco.bw.palette.swift"> <appender-ref ref="STDOUT" /> <appender-ref ref="FILE" /> <level value="DEBUG"/> </logger>