logd: default off by-UID spam filter

Bug: 14469172
Change-Id: I37c8dbcea0490afb994cbe6f033591fea1c58bc8
This commit is contained in:
Mark Salyzyn 2014-05-06 13:49:28 -07:00
parent 2d2fd4cdea
commit 4141cb2391
1 changed files with 2 additions and 2 deletions

View File

@ -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);