aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGraydon Hoare <[email protected]>2010-07-29 10:41:22 -0700
committerGraydon Hoare <[email protected]>2010-07-29 10:41:22 -0700
commit0b9c882d663d5ed5e761da4c15621f6753f63e79 (patch)
tree710501b37287a1c7e8555f2c462c68c91742bbd5 /src
parentAdd a bunch of comm tests. (diff)
downloadrust-0b9c882d663d5ed5e761da4c15621f6753f63e79.tar.xz
rust-0b9c882d663d5ed5e761da4c15621f6753f63e79.zip
Log join-wait count under rust_log::TASK bits, not ::ALL.
Diffstat (limited to 'src')
-rw-r--r--src/rt/rust_task.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rt/rust_task.cpp b/src/rt/rust_task.cpp
index 7140692c..9f4fa611 100644
--- a/src/rt/rust_task.cpp
+++ b/src/rt/rust_task.cpp
@@ -374,7 +374,7 @@ rust_task::unsupervise()
void
rust_task::notify_tasks_waiting_to_join() {
while (tasks_waiting_to_join.is_empty() == false) {
- log(rust_log::ALL, "notify_tasks_waiting_to_join: %d",
+ log(rust_log::TASK, "notify_tasks_waiting_to_join: %d",
tasks_waiting_to_join.size());
maybe_proxy<rust_task> *waiting_task = tasks_waiting_to_join.pop();
if (waiting_task->is_proxy()) {