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

* commit '5c02b2760e11e8b77452c345c788e4cda289f788':
  logd: default off by-UID spam filter
This commit is contained in:
Mark Salyzyn 2014-05-06 21:45:18 +00:00 committed by Android Git Automerger
commit 69894109c1
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);