diff options
author | Mark Salyzyn <salyzyn@google.com> | 2014-05-06 13:49:28 -0700 |
---|---|---|
committer | Mark Salyzyn <salyzyn@google.com> | 2014-05-06 13:50:28 -0700 |
commit | 4141cb2391cfd7211ffff7e53841c6c52869d525 (patch) | |
tree | 5a11cdb908570f78a52514b71440d7f517f3c522 | |
parent | 2d2fd4cdeac031e78a63c40d01a96a93ebb3eed8 (diff) | |
download | system_core-4141cb2391cfd7211ffff7e53841c6c52869d525.tar.gz system_core-4141cb2391cfd7211ffff7e53841c6c52869d525.tar.bz2 system_core-4141cb2391cfd7211ffff7e53841c6c52869d525.zip |
logd: default off by-UID spam filter
Bug: 14469172
Change-Id: I37c8dbcea0490afb994cbe6f033591fea1c58bc8
-rw-r--r-- | logd/LogWhiteBlackList.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/logd/LogWhiteBlackList.cpp b/logd/LogWhiteBlackList.cpp index c6c7b232a..e87b6047c 100644 --- a/logd/LogWhiteBlackList.cpp +++ b/logd/LogWhiteBlackList.cpp @@ -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); |