diff options
Diffstat (limited to 'chrome_frame/task_marshaller.cc')
-rw-r--r-- | chrome_frame/task_marshaller.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/chrome_frame/task_marshaller.cc b/chrome_frame/task_marshaller.cc index ab5059e..9b6ba20 100644 --- a/chrome_frame/task_marshaller.cc +++ b/chrome_frame/task_marshaller.cc @@ -119,8 +119,9 @@ void TaskMarshallerThroughMessageQueue::ExecuteDelayedTasks() { void TaskMarshallerThroughMessageQueue::DeleteAll() { AutoLock lock(lock_); - DLOG_IF(INFO, !pending_tasks_.empty()) << - "Destroying " << pending_tasks_.size() << " pending tasks."; + DVLOG_IF(1, !pending_tasks_.empty()) << "Destroying " + << pending_tasks_.size() + << " pending tasks."; while (!pending_tasks_.empty()) { Task* task = pending_tasks_.front(); pending_tasks_.pop(); |