diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-10-28 22:49:27 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-10-28 22:49:27 +0000 |
commit | 26f025e36b53b7691dc6cc2eb4db15b225418058 (patch) | |
tree | 2103459982819f9461bf004e8aa8f2d9bdbf0e05 /chrome/common/service_process_util_linux.cc | |
parent | 68013c2a6702fd9c72d3a4e3a2772559ce32202c (diff) | |
download | chromium_src-26f025e36b53b7691dc6cc2eb4db15b225418058.zip chromium_src-26f025e36b53b7691dc6cc2eb4db15b225418058.tar.gz chromium_src-26f025e36b53b7691dc6cc2eb4db15b225418058.tar.bz2 |
Convert chrome/common non-debug logs to debug logs.
Review URL: http://codereview.chromium.org/8368018
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@107814 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/service_process_util_linux.cc')
-rw-r--r-- | chrome/common/service_process_util_linux.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/common/service_process_util_linux.cc b/chrome/common/service_process_util_linux.cc index ab5957e..457a50c 100644 --- a/chrome/common/service_process_util_linux.cc +++ b/chrome/common/service_process_util_linux.cc @@ -63,7 +63,7 @@ MultiProcessLock* TakeServiceRunningLock(bool waiting) { bool ForceServiceProcessShutdown(const std::string& version, base::ProcessId process_id) { if (kill(process_id, SIGTERM) < 0) { - PLOG(ERROR) << "kill"; + DPLOG(ERROR) << "kill"; return false; } return true; |