A compost lab left App Service application logging on the local filesystem, filled the worker disk, and the site began returning errors. What should the developer change?
Select an answer to reveal the explanation.
Short Explanation
Filesystem logs are scratch paper on the worker’s desk—fine for a quick note, terrible as the permanent filing cabinet. When the desk fills up, the site chokes. Ship durable logs to Blob (or keep retention tiny) and keep local files short-lived.
Full Explanation
App Service can write logs to the local filesystem for convenience, but those files consume finite worker storage and can disrupt the site if retention is unbounded. Configuring Blob storage as the log destination—or keeping filesystem retention short—provides durable history without filling the worker. This use of Blob is a diagnostics sink setting, not a Domain 2 storage SDK coding task.