diff options
Diffstat (limited to 'base/threading/platform_thread_posix.cc')
-rw-r--r-- | base/threading/platform_thread_posix.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/base/threading/platform_thread_posix.cc b/base/threading/platform_thread_posix.cc index e6b8e64..d1fb7bb 100644 --- a/base/threading/platform_thread_posix.cc +++ b/base/threading/platform_thread_posix.cc @@ -186,14 +186,14 @@ void PlatformThread::SetName(const char* name) { int err = dynamic_pthread_setname_np(pthread_self(), shortened_name.c_str()); if (err < 0) - DLOG(ERROR) << "pthread_setname_np: " << safe_strerror(err); + LOG(ERROR) << "pthread_setname_np: " << safe_strerror(err); } else { // Implementing this function without glibc is simple enough. (We // don't do the name length clipping as above because it will be // truncated by the callee (see TASK_COMM_LEN above).) int err = prctl(PR_SET_NAME, name); if (err < 0) - DPLOG(ERROR) << "prctl(PR_SET_NAME)"; + PLOG(ERROR) << "prctl(PR_SET_NAME)"; } } #elif defined(OS_MACOSX) |