Dear List,
When I try to call any of my routes from the main routing
logic routine, I get the following warning in my log and the call is not
processed as it should be in the route.
0(26610)
WARNING: run_actions: null action list (rec_level=3)
In other words, I have:
route{
:
:
:
log(1, “LOG: Calling route 2\n”);
route(2);
log(1, “LOG: Done calling route 2\n”);
break;
}
route[2] {
log(1, “LOG: I am in Route 2\n”);
:
:
:
}
My output is:
0(26841) LOG:
0(26841) WARNING: run_actions: null action
list (rec_level=3)
0(26841) LOG: Done calling Route 2
Anyone know what my problem is here?
Thanks.