Skip to content

Commit 21cc15f

Browse files
authored
include OS info in error report (#21)
1 parent dcfc4a9 commit 21cc15f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Diff for: src/main/kotlin/com/vaadin/plugin/copilot/CopilotErrorHandler.kt

+2-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ class CopilotErrorHandler: ErrorReportSubmitter() {
2828
val appName = ApplicationInfo.getInstance().fullApplicationName
2929

3030
var body = "Plugin version: **${pluginDescriptor.version}**\n" +
31-
"IDE version: **$appName**\n\n"
31+
"IDE version: **$appName**\n" +
32+
"OS: **${System.getProperty("os.name")}**\n\n"
3233

3334
if (additionalInfo != null) {
3435
body += "Additional info:\n" +

0 commit comments

Comments
 (0)