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?
Asked
Active
Viewed 903 times
1 Answers
4
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

Shui shengbao
- 18,746
- 3
- 27
- 45
-
Thanks will give it a look through now :) – Lutando Jun 13 '17 at 06:37