Skip to content

Commit

Permalink
core: async task logging on no callback
Browse files Browse the repository at this point in the history
  • Loading branch information
miconda committed May 26, 2020
1 parent e6aefeb commit 8893e6f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/core/async_task.c
Expand Up @@ -280,6 +280,8 @@ int async_task_run(int idx)
LM_DBG("task executed [%p] (%p/%p)\n", (void*)ptask,
(void*)ptask->exec, (void*)ptask->param);
ptask->exec(ptask->param);
} else {
LM_DBG("task with no callback function - ignoring\n");
}
shm_free(ptask);
}
Expand Down

0 comments on commit 8893e6f

Please sign in to comment.