Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b0e08424 authored by android-build-team Robot's avatar android-build-team Robot
Browse files

Snap for 4759746 from 97993180 to pi-release

Change-Id: I54ef983497fb63281ce2cc6ad9605118055cde0b
parents dbf16972 97993180
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -47,6 +47,8 @@ class ComplexEventLogger {
  public:
    // Create a complex event with category|category|.
    explicit ComplexEventLogger(int category);
    // Set the package name that this event originates from.
    void SetPackageName(const std::string& package_name);
    // Add tagged data to the event, with the given tag and integer value.
    void AddTaggedData(int tag, int32_t value);
    // Add tagged data to the event, with the given tag and string value.
@@ -70,6 +72,7 @@ enum {
    LOGBUILDER_VALUE = 802,
    LOGBUILDER_COUNTER = 803,
    LOGBUILDER_HISTOGRAM = 804,
    LOGBUILDER_PACKAGENAME = 806,

    ACTION_BOOT = 1098,
    FIELD_PLATFORM_REASON = 1099,
+4 −0
Original line number Diff line number Diff line
@@ -62,6 +62,10 @@ ComplexEventLogger::ComplexEventLogger(int category) : logger(kSysuiMultiActionT
    logger << LOGBUILDER_CATEGORY << category;
}

void ComplexEventLogger::SetPackageName(const std::string& package_name) {
    logger << LOGBUILDER_PACKAGENAME << package_name;
}

void ComplexEventLogger::AddTaggedData(int tag, int32_t value) {
    logger << tag << value;
}