Skip to content

Commit 9a58306

Browse files
authored
Try to collect more plugin verifier logs (#6282)
* Try to collect more plugin verifier logs * Try to collect more plugin verifier logs, take 2 * Thank you yaml
1 parent 204ec05 commit 9a58306

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

.github/workflows/pr.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,8 @@ jobs:
151151

152152
# Run Verify Plugin task and IntelliJ Plugin Verifier tool
153153
- name: Run Plugin Verification tasks
154+
env:
155+
JAVA_TOOL_OPTIONS: -Dlogback.configurationFile=${{ github.workspace }}/intellij-plugin/logback.xml
154156
run: ./gradlew :intellij-plugin:verifyPlugin -Pplugin.verifier.home.dir=${{ steps.properties.outputs.pluginVerifierHomeDir }}
155157

156158
# Collect Plugin Verifier Result

intellij-plugin/logback.xml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<configuration>
2+
3+
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
4+
<encoder>
5+
<pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} -%kvp- %msg%n</pattern>
6+
</encoder>
7+
</appender>
8+
9+
<root level="DEBUG">
10+
<appender-ref ref="STDOUT" />
11+
</root>
12+
13+
</configuration>

0 commit comments

Comments
 (0)