az webapp log tail - skip existing logs

Viewed 167

I am using the command az webapp log tail to follow my app service logs.

Usually it prints a ton of existing logs before it tails the current ones. Is there a way to just follow logs like real tail -f does?

1 Answers

No there is nothing something it gives option in cli. Actually when we query the log then it start from connection time and then start giving the result. You can analyse the same azure portal log stream of web app.

Related