File tree 1 file changed +3
-5
lines changed
{{cookiecutter.__src_folder_name}}/infra/core/host
1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -17,8 +17,6 @@ param runtimeName string
17
17
param runtimeNameAndVersion string = '${runtimeName }|${runtimeVersion }'
18
18
param runtimeVersion string
19
19
20
- param enableDiagnosticLogging bool = true
21
-
22
20
// Microsoft.Web/sites Properties
23
21
param kind string = 'app,linux'
24
22
@@ -61,9 +59,9 @@ resource appService 'Microsoft.Web/sites@2022-03-01' = {
61
59
allowedOrigins : union ([ 'https://portal.azure.com' , 'https://ms.portal.azure.com' ], allowedOrigins )
62
60
}
63
61
// Diagnostic logging
64
- detailedErrorLoggingEnabled : enableDiagnosticLogging
65
- httpLoggingEnabled : enableDiagnosticLogging
66
- requestTracingEnabled : enableDiagnosticLogging
62
+ detailedErrorLoggingEnabled : true
63
+ httpLoggingEnabled : true
64
+ requestTracingEnabled : true
67
65
}
68
66
clientAffinityEnabled : clientAffinityEnabled
69
67
httpsOnly : true
You can’t perform that action at this time.
0 commit comments