From 357a3aeb6cf685f353a6ae154047de2ce7fb30ec Mon Sep 17 00:00:00 2001 From: Liviu Chircu Date: Tue, 24 Nov 2020 17:38:23 +0200 Subject: [PATCH] Missing route on startup: Lower severity from ALERT to ERROR (cherry picked from commit 5f8361179526bf06638b8fd3622cbb0c17c8fd11) --- route.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/route.c b/route.c index 344867877f4..8e7c97abf56 100644 --- a/route.c +++ b/route.c @@ -1134,8 +1134,8 @@ static int fix_actions(struct action* a) break; } if (ret == -1) { - LM_ALERT("BUG in route() type %d\n", - t->elem[0].type); + LM_ERR("failed to validate a route() statement (type %d)\n", + t->elem[0].type); ret = E_CFG; goto error; }