Hello Priyanka, Welcome to MS Q&A
The absence of a 'Log level' dropdown under 'Application Logging (Filesystem)' in Azure App Service logs is likely because the 'Filesystem' option is intended for temporary debugging purposes and does not support the same level of detail as the 'Blob' option. The 'Blob' option allows for a more granular logging configuration, including the ability to select the log level, while the 'Filesystem' option does not provide this capability.
The Filesystem option is for temporary debugging purposes, and turns itself off in 12 hours. The Blob option is for long-term logging, and needs a blob storage container to write logs to. The Blob option also includes additional information in the log messages, such as the ID of the origin VM instance o
f the log message (InstanceId
), thread ID (Tid
), and a more granular timestamp (EventTickCount
).
To enable web server logging for Windows apps in the Azure portal, navigate to your app and select App Service logs.
For Web server logging, select Storage to store logs on blob storage, or File System to store logs on the App Service file system.
For more detailed information, you can refer to the following resources:
Please check and let us know
Kindly accept if it helps
Thanks
Deepanshu