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

Commit 1a01f963 authored by Mark Salyzyn's avatar Mark Salyzyn
Browse files

Revert: "logd: default off by-UID spam filter"

With "logd: inject first UID by log buffer message" we can
remove the FUD introduced by having the UID spam filter on

This reverts commit 4141cb23

Bug: 19608965
Bug: 14469172
Change-Id: Ifdc20b099e0e426546525b11c1dfe8cc0f830a02
parent ab0dcf68
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -52,7 +52,7 @@ void Prune::format(char **strp) {
}

PruneList::PruneList()
        : mWorstUidEnabled(false) {
        : mWorstUidEnabled(true) {
    mNaughty.clear();
    mNice.clear();
}
@@ -70,7 +70,7 @@ PruneList::~PruneList() {
}

int PruneList::init(char *str) {
    mWorstUidEnabled = false;
    mWorstUidEnabled = true;
    PruneCollection::iterator it;
    for (it = mNice.begin(); it != mNice.end();) {
        delete (*it);