Skip to content

Commit

Permalink
Fix Le3LogWriter
Browse files Browse the repository at this point in the history
(cherry picked from commit ccc399b)
  • Loading branch information
Googler authored and mai93 committed Jul 2, 2024
1 parent ded1d37 commit ba3378b
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions ext/proto/logentry.proto
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,16 @@ package com.google.idea.blaze.ext;

option java_package = "com.google.idea.blaze.ext";


service LoggingService {
// Writes a log entry to the disk
rpc Write(LogBatch) returns (Boolean) {}
}

message LogBatch {
repeated IntellijLogEntry entry = 1;
}

message IntellijLogEntry {
optional int64 end_time_millis = 1;
optional int64 duration_millis = 2;
Expand Down Expand Up @@ -634,3 +644,7 @@ message Refactoring {
// implementation.
repeated TextRange element_ranges_after = 7;
}

message Boolean {
bool value = 1;
}

0 comments on commit ba3378b

Please sign in to comment.