Exporting Logs to a File
Copyright © 2021. TIBCO Software Inc. All Rights Reserved.
Modify the logback.xml file to export plug-in logs to a file.
<appender name="FILE" class="ch.qos.logback.core.FileAppender">
<file>c:/bw6-AmazonS3.log</file>
<encoder>
<pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36}-%msg%n</pattern>
</encoder>
</appender>
The file tag defines the location to which the log is exported and is the absolute path of the file.
<root level="DEBUG"> <appender-ref ref="STDOUT"/> <appender-ref ref="FILE"/> </root>