@Vijay Prasath P Thanks for reaching and apology for the inconvenience due to this issue.
As per the error "Running command: "C:\Users\v.azurelogicapps\dependencies\FuncCoreTools\func host start --port 8000" with pid: "25044"... Port 8000 is unavailable. Close the process using that port, or specify another port using --port [-p]." it looks like your standard logic app function runtime try to use the port 8000 which was not available. The reason could be another application is using the same port 8000 which is running on your local machine. To resolve the issue, you can either use a new port 8001 and run the command func start --port 8001 so it uses the new port that you have specified while running your application or kill/stop the existing application that is running on the port 8000 in case if you don't want to run that application.
Let me know if it helps you to resolve the issue. Feel free to get back to me if you need any assistance.
Please accept as "Yes" if the answer is helpful so that it can help others in the community.