Skip to content

Commit 3ce4f52

Browse files
committed
Fix anchor links
1 parent ee858e2 commit 3ce4f52

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

articles/azure-functions/dotnet-isolated-process-guide.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -973,7 +973,7 @@ host.Run();
973973

974974
The call to `ConfigureFunctionsApplicationInsights()` adds an `ITelemetryModule` that listens to a Functions-defined `ActivitySource`. This module creates the dependency telemetry required to support distributed tracing. For more information about `AddApplicationInsightsTelemetryWorkerService()` and how to use it, see [Application Insights for Worker Service applications](/azure/azure-monitor/app/worker-service).
975975

976-
#### Manage log levels
976+
#### <a name="managing-log-levels"></a>Manage log levels
977977

978978
> [!IMPORTANT]
979979
> The Functions host and the isolated process worker have separate configuration for log levels. Any [Application Insights configuration in host.json](./functions-host-json.md#applicationinsights) doesn't affect logging from the worker, and similarly, configuration in your worker code doesn't impact logging from the host. Apply changes in both places if your scenario requires customization at both layers.
@@ -1135,7 +1135,7 @@ Then create an `appsettings.json` file in your project root with the following c
11351135
```
11361136

11371137
> [!TIP]
1138-
> Alternatively, you can use `Host.CreateDefaultBuilder()` instead of `new HostBuilder()`. This method automatically loads configuration from `appsettings.json`, environment variables, and other sources. However, [FunctionsApplication.CreateBuilder()](dotnet-isolated-process-guide.md?tabs=ihostapplicationbuilder%2Ccode#manage-log-levels) is the recommended approach for new projects, as it automatically configures the Functions worker (including the call to `ConfigureFunctionsWebApplication()`) and loads configuration files.
1138+
> Alternatively, you can use `Host.CreateDefaultBuilder()` instead of `new HostBuilder()`. This method automatically loads configuration from `appsettings.json`, environment variables, and other sources. However, [FunctionsApplication.CreateBuilder()](dotnet-isolated-process-guide.md?tabs=ihostapplicationbuilder%2Ccode#managing-log-levels) is the recommended approach for new projects, as it automatically configures the Functions worker (including the call to `ConfigureFunctionsWebApplication()`) and loads configuration files.
11391139

11401140
---
11411141

0 commit comments

Comments
 (0)