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

Commit 8261991a authored by Mark Salyzyn's avatar Mark Salyzyn Committed by Android Git Automerger
Browse files

am fe48dbe4: am 69894109: am 5c02b276: Merge "logd: default off by-UID spam filter"

* commit 'fe48dbe4':
  logd: default off by-UID spam filter
parents e6ed68bd fe48dbe4
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -47,7 +47,7 @@ void Prune::format(char **strp) {
}

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

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