Hello @Swapnil kumar and welcome to Microsoft Q&A. I will try to explain the error message as best I can.
SIGNAL TERM
is a signal used to tell the operating system to end the process. There are multiple possible causes for this , usually an unhandled exception.
The next line gives further insight:
Final app status: FAILED, exitCode: 13, (reason: User application exited with status 143)
If I focus on the 13, this could be a broken pipe signal, and the default action on broken pipe is to terminate the process.
If I focus on the 143, this is a status code with which your code chose to stop with. When applications end, they return a status code. If I recall correctly, 0 is the default and means everything ran as expected. Any other value indicates an error happened. The number is dictated by your code. In this case you would search your code for the value 143, or search each of the exit commands.