From 33c5449563becd2357b648ec469ef247a6ae2f5d Mon Sep 17 00:00:00 2001 From: Daniel-Constantin Mierla Date: Thu, 17 Sep 2015 12:50:55 +0200 Subject: [PATCH] tm: warn in case of transaction is not suspended by a continue is attempted --- modules/tm/t_suspend.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/tm/t_suspend.c b/modules/tm/t_suspend.c index 1ca56dba67f..e657959bde1 100644 --- a/modules/tm/t_suspend.c +++ b/modules/tm/t_suspend.c @@ -178,7 +178,7 @@ int t_continue(unsigned int hash_index, unsigned int label, } if (!(t->flags & T_ASYNC_SUSPENDED)) { - LM_ERR("transaction is not suspended [%u:%u]\n", hash_index, label); + LM_WARN("transaction is not suspended [%u:%u]\n", hash_index, label); return -2; }