From mboxrd@z Thu Jan 1 00:00:00 1970 From: Pete Zaitcev Subject: [tabled patch 3/4] remove a per-key printout Date: Fri, 21 May 2010 20:20:00 -0600 Message-ID: <20100521202000.487e39d7@redhat.com> Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Return-path: Sender: hail-devel-owner@vger.kernel.org List-ID: Content-Type: text/plain; charset="us-ascii" To: Jeff Garzik Cc: Project Hail List We still have a few other per-key printouts in replication code that a) are clearly marked as temporary, and b) only appear when keys are replicated. This one was popping on every rescan and thus filling the logs with useless garbage. Signed-off-by: Pete Zaitcev --- server/replica.c | 7 ------- 1 file changed, 7 deletions(-) commit ef3d146c043d7501aec4722980acc9b884553c7d Author: Pete Zaitcev Date: Fri May 21 19:56:38 2010 -0600 Remove per-key printout from replica.c. diff --git a/server/replica.c b/server/replica.c index e774824..ac14cb2 100644 --- a/server/replica.c +++ b/server/replica.c @@ -601,13 +601,6 @@ static void rep_scan_verify(struct rep_arg *arg, oid = GUINT64_FROM_LE(obj->d.a.oid); - applog(LOG_INFO, "bucket %s key %s oid %llX n(%u,%u,%u): all %d ok %d", - bucket_name, object_name, (long long) oid, - GUINT32_FROM_LE(obj->d.a.nidv[0]), - GUINT32_FROM_LE(obj->d.a.nidv[1]), - GUINT32_FROM_LE(obj->d.a.nidv[2]), - allcnt, redcnt); - if (redcnt < MAXWAY) { /* maybe have MINWAY too? */ rep_job_start(arg, cp->klen, cp->key, oid, GUINT64_FROM_LE(obj->size), redcnt, redvec);