summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormartinko2014-01-28 10:47:02 +0000
committermartinko2014-01-28 10:47:02 +0000
commit79a31496d6e814a2221329ac9106b6481feafb56 (patch)
tree787718c2e6b172ee156b4b654a769149be8108e6
parent472efc6e23ea9fb825a864d54272cc004464f288 (diff)
londiste.handlers: removed duplicate debug logging
-rw-r--r--python/londiste/handlers/bulk.py1
-rw-r--r--python/londiste/handlers/dispatch.py1
2 files changed, 0 insertions, 2 deletions
diff --git a/python/londiste/handlers/bulk.py b/python/londiste/handlers/bulk.py
index e8b9104b..efa6fe22 100644
--- a/python/londiste/handlers/bulk.py
+++ b/python/londiste/handlers/bulk.py
@@ -98,7 +98,6 @@ class BulkLoader(BaseHandler):
op = ev.ev_type[0]
if op not in 'IUD':
raise Exception('Unknown event type: '+ev.ev_type)
- self.log.debug('bulk.process_event: %s/%s', ev.ev_type, ev.ev_data)
# pkey_list = ev.ev_type[2:].split(',')
data = skytools.db_urldecode(ev.ev_data)
diff --git a/python/londiste/handlers/dispatch.py b/python/londiste/handlers/dispatch.py
index 66f43f76..90d01bbb 100644
--- a/python/londiste/handlers/dispatch.py
+++ b/python/londiste/handlers/dispatch.py
@@ -784,7 +784,6 @@ class Dispatcher (ShardHandler):
if not op in self.conf.event_types:
#self.log.debug('dispatch.process_event: ignored event type')
return
- self.log.debug('dispatch.process_event: %s/%s', ev.ev_type, ev.ev_data)
if self.pkeys is None:
self.pkeys = self.filter_pkeys(pkeys.split(','))
data = self.filter_data(data)