logd: default off by-UID spam filter
Bug: 14469172 Change-Id: I37c8dbcea0490afb994cbe6f033591fea1c58bc8
This commit is contained in:
parent
2d2fd4cdea
commit
4141cb2391
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue