Skip to content

Commit

Permalink
Migrate ConfigurationLogger to ij-ext
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 605478063
  • Loading branch information
Googler authored and copybara-github committed Feb 12, 2024
1 parent da93188 commit 908a507
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions ext/proto/logentry.proto
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@ message IntellijLogEntry {
oneof payload {
Action action = 15;
Event event = 16;
CompletionItem completion_item = 17;
IntellijConfiguration configuration = 18;
ProjectInfo project_info = 19;
}
}

Expand Down Expand Up @@ -107,4 +110,26 @@ message Event {
optional int64 duration_millis = 3;
map<string, string> key_value = 4;
repeated Event subevent = 5;
}

message CompletionItem {
optional string language = 1;
optional bool auto_accepted = 2;
optional int32 selection_index = 5;
optional int32 completion_length = 7;
}

message IntellijConfiguration {
message Plugin {
optional string id = 1;
optional string name = 2;
optional string version = 3;
optional bool enabled = 4;
optional bool bundled = 5;
}

repeated Plugin plugins = 1;
repeated UserSetting application_setting = 2;
map<string, string> experiments = 3;
repeated string jvm_argument = 4;
}

0 comments on commit 908a507

Please sign in to comment.