Skip to content

Commit

Permalink
Re-add stats-log class for conscrypt metrics
Browse files Browse the repository at this point in the history
This class is created by codegen in the gmscore version of conscrypt and so we need the logging path to go through it in order for it to be replaced in gmscore
  • Loading branch information
miguelaranda0 committed Dec 3, 2024
1 parent 8816adb commit 34840bd
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ public final class ConscryptStatsLog {
private ConscryptStatsLog() {}

public static void write(int atomId, boolean success, int protocol, int cipherSuite,
int duration, Source source, int[] uids) {
int duration, Source source) {
ReflexiveStatsEvent event = ReflexiveStatsEvent.buildEvent(
atomId, success, protocol, cipherSuite, duration, source.ordinal(), uids);
atomId, success, protocol, cipherSuite, duration, source.ordinal());

ReflexiveStatsLog.write(event);
}
Expand Down

0 comments on commit 34840bd

Please sign in to comment.