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

* commit '69894109c1c706fa0daa1448ddad1b9f09dee15f':
  logd: default off by-UID spam filter
This commit is contained in:
Mark Salyzyn 2014-05-07 19:37:10 +00:00 committed by Android Git Automerger
commit fe48dbe40a
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);