diff options
Diffstat (limited to 'base/process_util_openbsd.cc')
-rw-r--r-- | base/process_util_openbsd.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/base/process_util_openbsd.cc b/base/process_util_openbsd.cc index d76e68f..b442e93 100644 --- a/base/process_util_openbsd.cc +++ b/base/process_util_openbsd.cc @@ -64,7 +64,7 @@ ProcessIterator::ProcessIterator(const ProcessFilter* filter) do { size_t len = 0; if (sysctl(mib, arraysize(mib), NULL, &len, NULL, 0) < 0) { - DLOG(ERROR) << "failed to get the size needed for the process list"; + LOG(ERROR) << "failed to get the size needed for the process list"; kinfo_procs_.resize(0); done = true; } else { @@ -78,7 +78,7 @@ ProcessIterator::ProcessIterator(const ProcessFilter* filter) // If we get a mem error, it just means we need a bigger buffer, so // loop around again. Anything else is a real error and give up. if (errno != ENOMEM) { - DLOG(ERROR) << "failed to get the process list"; + LOG(ERROR) << "failed to get the process list"; kinfo_procs_.resize(0); done = true; } @@ -92,7 +92,7 @@ ProcessIterator::ProcessIterator(const ProcessFilter* filter) } while (!done && (try_num++ < max_tries)); if (!done) { - DDLOG(ERROR) << "failed to collect the process list in a few tries"; + LOG(ERROR) << "failed to collect the process list in a few tries"; kinfo_procs_.resize(0); } } @@ -137,7 +137,7 @@ bool ProcessIterator::CheckForNextProcess() { // to populate |entry_.exe_file_|. size_t exec_name_end = data.find('\0'); if (exec_name_end == std::string::npos) { - DLOG(ERROR) << "command line data didn't match expected format"; + LOG(ERROR) << "command line data didn't match expected format"; continue; } |