From 4bec98f23ff5365e72f0b29a9ae522286406bec6 Mon Sep 17 00:00:00 2001 From: djalal Date: Mon, 6 Sep 2010 21:02:38 +0000 Subject: [PATCH] Small debug message improvements, to show if a new target was successfully added. --- TargetGroup.cc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/TargetGroup.cc b/TargetGroup.cc index 6b2870b13..cc21398a9 100644 --- a/TargetGroup.cc +++ b/TargetGroup.cc @@ -602,10 +602,12 @@ unsigned long NewTargets::push (const char *target) { queue.push(tg); if (o.debugging > 2) - log_write(LOG_PLAIN, "New target %s pushed onto the queue.\n", tg.c_str()); + log_write(LOG_PLAIN, "New Targets: target %s pushed onto the queue.\n", + tg.c_str()); } else { if (o.debugging > 2) - log_write(LOG_PLAIN, "Target %s is already in the queue.\n", tg.c_str()); + log_write(LOG_PLAIN, "New Targets: target %s is already in the queue.\n", + tg.c_str()); } }