am 5c02b276: Merge "logd: default off by-UID spam filter"
* commit '5c02b2760e11e8b77452c345c788e4cda289f788': logd: default off by-UID spam filter
This commit is contained in:
commit
69894109c1
|
@ -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