diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2015-08-31 18:22:50 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2015-08-31 18:22:50 +0100 |
commit | d77e76460cd7fc5c2ba176fe30a200d0bc7659e1 (patch) | |
tree | 9358957222aaa0b165d4652c1c2a6d8a9a771c0e /src | |
parent | e3395816d88a79a7fa22ae2e1b364f5cfa099777 (diff) | |
download | rspamd-d77e76460cd7fc5c2ba176fe30a200d0bc7659e1.tar.gz rspamd-d77e76460cd7fc5c2ba176fe30a200d0bc7659e1.zip |
Forgot to adopt debug statements.
Diffstat (limited to 'src')
-rw-r--r-- | src/libserver/task.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libserver/task.c b/src/libserver/task.c index bf5ee0f1f..61e0befc7 100644 --- a/src/libserver/task.c +++ b/src/libserver/task.c @@ -477,11 +477,11 @@ rspamd_task_process (struct rspamd_task *task, guint stages) if (rspamd_session_events_pending (task->s) != 0) { /* We have events pending, so we consider this stage as incomplete */ - msg_debug ("need more work on stage %d", st); + msg_debug_task ("need more work on stage %d", st); } else { /* Mark the current stage as done and go to the next stage */ - msg_debug ("completed stage %d", st); + msg_debug_task ("completed stage %d", st); task->processed_stages |= st; /* Reset checkpoint */ |