Tests now run with logging level DEBUG

This commit is contained in:
Ilan
2015-07-17 14:17:40 +02:00
parent 40ac0bfce5
commit b876b1e06d
2 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -313,7 +313,7 @@ def pusher(task_queue, e, list_key=Conf.Q_LIST, r=redis_client):
if task:
task = task[1]
task_queue.put(task)
logger.debug(_('queueing {}').format(task))
logger.debug(_('queueing from {}').format(list_key))
if e.is_set():
break
logger.info(_("{} stopped pushing tasks").format(current_process().name))
+2 -1
View File
@@ -104,4 +104,5 @@ STATIC_URL = '/static/'
# Django Q specific
Q_CLUSTER = {'name': 'django_q_test',
'cpu_affinity': 1,
'testing': True}
'testing': True,
'log_level': 'DEBUG'}