Description
If a template with inline macro is rendered concurrently it prints the following errors in the log:
ERROR [velocity] VM #myInlineMacro: error : too few arguments to macro. Wanted 3 got 0
ERROR [velocity] VM error : myInlineMacro. Null AST
and where the expected output of the inline macro is, it has the string values of the arguments passed to the macro in brackets
eg:
#myInlineMacro('Arg1' 'arg2' 'arg3')
gives the following on above error
(Arg1 arg2 arg3)