Skip to content

Commit 049d9c9

Browse files
committed
revisions
1 parent b46db94 commit 049d9c9

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

articles/azure-app-configuration/enable-dynamic-configuration-aspnet-core.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -232,10 +232,10 @@ The configuration refresh is triggered by the incoming requests to your web app.
232232

233233
## Monitoring and Troubleshooting
234234

235-
Logs are output upon refresh and contain detailed information on changes to key-values in your App Configuration store and your application, as well as any issues that occur. This allows you to monitor configuration refreshes as they happen.
235+
Logs are output upon configuration refresh and contain detailed information on changes to key-values in your App Configuration store and your application.
236236

237237
- A default `ILoggerFactory` is added automatically when `services.AddAzureAppConfiguration()` is invoked in your `ConfigureServices` method. The App Configuration provider uses this `ILoggerFactory` to create an instance of `ILogger`, which outputs these logs. No code changes are needed.
238-
- Logs are output to the console at different log levels. The default level is `Information`.
238+
- Logs are output at different log levels. The default level is `Information`.
239239

240240
| Log Level | Description |
241241
|---|---|
@@ -246,11 +246,10 @@ Logs are output upon refresh and contain detailed information on changes to key-
246246
- Here is an example `Information` level log:
247247
```console
248248
info: Microsoft.Extensions.Configuration.AzureAppConfiguration.Refresh[0]
249-
Setting updated from Key Vault. Key:'reference'
249+
Setting updated from Key Vault. Key:'ExampleKey'
250250
```
251251

252-
253-
For more information on how to utilize these logs, follow the instructions for [logging in .NET Core and ASP.NET Core](/aspnet/core/fundamentals/logging). Using `ILogger` is the preferred method and is prioritized as the logging source if an instance of `ILoggerFactory` is present. However, if `ILoggerFactory` is not available, logs can alternatively be enabled and configured through instructions for [Azure SDK logging for .NET core apps](./enable-dynamic-configuration-dotnet-core.md#monitoring-and-troubleshooting).
252+
Using `ILogger` is the preferred method and is prioritized as the logging source if an instance of `ILoggerFactory` is present. However, if `ILoggerFactory` is not available, logs can alternatively be enabled and configured through the [instructions for .NET Core apps](./enable-dynamic-configuration-dotnet-core.md#monitoring-and-troubleshooting). For more information on how to utilize these logs, follow the instructions for [logging in .NET Core and ASP.NET Core](/aspnet/core/fundamentals/logging).
254253

255254
## Clean up resources
256255

articles/azure-app-configuration/enable-dynamic-configuration-dotnet-core.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,9 +142,9 @@ Calling the `ConfigureRefresh` method alone won't cause the configuration to ref
142142

143143
## Monitoring and Troubleshooting
144144

145-
Logs are output upon refresh and contain detailed information on changes to key-values in your App Configuration store and your application, as well as any issues that occur. This allows you to monitor configuration refreshes as they happen. You can enable these logs using the instructions for [logging with the Azure SDK for .NET](/dotnet/azure/sdk/logging).
145+
Logs are output upon configuration refresh and contain detailed information on changes to key-values in your App Configuration store and your application. You can enable these logs using the instructions for [logging with the Azure SDK for .NET](/dotnet/azure/sdk/logging).
146146

147-
- Logs are output to the console at different log levels. The default level is `Informational`.
147+
- Logs are output at different log levels. The default level is `Informational`.
148148

149149
| Log Level | Description |
150150
|---|---|

0 commit comments

Comments
 (0)