diff options
author | Tom Cherry <tomcherry@google.com> | 2017-04-25 17:39:06 -0700 |
---|---|---|
committer | Tom Cherry <tomcherry@google.com> | 2017-04-25 17:46:13 -0700 |
commit | 6f7ef2fb34e4d2b582487ec058748d87adc8b129 (patch) | |
tree | 0975b0b224793ffffb90b508b532a8826ad45120 | |
parent | 86e31a81238fb30d113947e7689a38daf49097f3 (diff) | |
download | core-6f7ef2fb34e4d2b582487ec058748d87adc8b129.tar.gz core-6f7ef2fb34e4d2b582487ec058748d87adc8b129.tar.bz2 core-6f7ef2fb34e4d2b582487ec058748d87adc8b129.zip |
init: remove 'computing context for service'... message
This line shows up immediately before starting a service for each
service without a 'seclabel' option, essentially becoming log spam.
We already log if we fail to compute the context as well.
Test: Boot bullhead
Change-Id: Ibe91fd2dd9f53a8ae2ca95ccea1636ecef2af224
-rw-r--r-- | init/service.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/init/service.cpp b/init/service.cpp index ab021fae3..2284a2144 100644 --- a/init/service.cpp +++ b/init/service.cpp @@ -634,7 +634,6 @@ bool Service::Start() { if (!seclabel_.empty()) { scon = seclabel_; } else { - LOG(INFO) << "computing context for service '" << name_ << "'"; scon = ComputeContextFromExecutable(name_, args_[0]); if (scon == "") { return false; |