Skip to content

Commit

Permalink
include OS info in error report (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcinVaadin authored Mar 25, 2024
1 parent dcfc4a9 commit 21cc15f
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ class CopilotErrorHandler: ErrorReportSubmitter() {
val appName = ApplicationInfo.getInstance().fullApplicationName

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

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

0 comments on commit 21cc15f

Please sign in to comment.