Skip to content

Commit

Permalink
Fix code formatting.
Browse files Browse the repository at this point in the history
  • Loading branch information
rkaregar committed Feb 16, 2024
1 parent 26c165b commit a2e6d18
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
import io.grpc.Metadata;
import io.grpc.MethodDescriptor;
import io.grpc.Status;
import java.util.Arrays;
import java.util.concurrent.atomic.LongAdder;
import java.util.logging.Level;
import java.util.logging.Logger;
Expand Down Expand Up @@ -61,7 +60,8 @@ public void onClose(Status status, Metadata trailers) {
if (t instanceof InterruptedException) {
Thread.currentThread().interrupt();
}
LOG.log(Level.WARNING, "Unexpected error while updating connection error stats", t);
LOG.log(
Level.WARNING, "Unexpected error while updating connection error stats", t);
}
super.onClose(status, trailers);
}
Expand Down

0 comments on commit a2e6d18

Please sign in to comment.