Remove logline

This commit is contained in:
nolash 2021-04-06 21:18:27 +02:00
parent af97b7799f
commit 2101a23ccb
Signed by untrusted user who does not match committer: lash
GPG Key ID: 21D2E7BB88C2A746

View File

@ -33,7 +33,6 @@ def get_sms_queue_tasks(app, task_prefix='cic_notify.tasks.sms.'):
i = Inspect(app=app, destination=[host])
for tasks in i.registered_tasks().values():
for task in tasks:
logg.debug('q {}'.format(task))
if len(task) >= task_prefix_len and task[:task_prefix_len] == task_prefix:
queue_tasks.append((queue, task,))