Hi Team, I ran below script. let v=1; if v=2 then trace 'v is two'; elseif v=1 then trace 'v is one'; endif exit script; But in log files elseif is not present.
20230221T061553.334+0100 0002 let v=1 20230221T061553.334+0100 0003 if v=2 then 20230221T061553.334+0100 0006 trace 'v is one' 20230221T061553.334+0100 0006 'v is one' 20230221T061553.334+0100 0007 20230221T061553.334+0100 0007 endif 20230221T061553.334+0100 0008 exit script 20230221T061553.342+0100 Execution finished.
Could you please help me to know the reason. Thank you