Lutando
Lutando

Reputation: 5010

Enable Azure diagnostics logging using a CLI

I am trying to achieve achieve this, however I would like to enable diagnostics logging using whatever form of non-human interaction possible. I would like to incorporate something that enables diagnostics logging during my build step, by default these are turned off it seems. Any Powsershell (using Azure RM) or visual studio team service build tasks available to make this happen?

Upvotes: 7

Views: 995

Answers (1)

Shui shengbao
Shui shengbao

Reputation: 19225

You could do it with Azure CLI 2.0. You could use the following command.

az webapp log config --name
                     --resource-group
                     [--application-logging {false, true}]
                     [--detailed-error-messages {false, true}]
                     [--failed-request-tracing {false, true}]
                     [--level {error, information, verbose, warning}]
                     [--slot]
                     [--web-server-logging {filesystem, off, storage}]

Get help from az help command az webapp log config -h or the official article.

#an example
az webapp log config --name shui -g shuiapp --application-logging true --web-server-logging filesystem

Upvotes: 4

Related Questions