Skip to content

Commit ea3c0ec

Browse files
authored
Update dotnet-isolated-process-guide.md
Fixed locale-specific link ; use absolute link to /dotnet instead.
1 parent 62246c7 commit ea3c0ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -811,7 +811,7 @@ public class MyFunction {
811811
> Loggers obtained through dependency injection are associated with a log category set to the fully qualified name of the class.
812812
> This usually consists in a category name with one or more `.` (period) characters.
813813
> When hosting your function app on Linux App Service plans, please be aware of
814-
> [limitations with category names that contain a dot](https://learn.microsoft.com/en-us/dotnet/core/extensions/logging?tabs=bash#set-log-level-by-command-line-environment-variables-and-other-configuration). You will not be able to override
814+
> [limitations with category names that contain a dot](/dotnet/core/extensions/logging?tabs=bash#set-log-level-by-command-line-environment-variables-and-other-configuration). You will not be able to override
815815
> log levels for those categories using environment variables.
816816

817817
The logger can also be obtained from a [FunctionContext] object passed to your function. Call the [GetLogger<T>] or [GetLogger] method, passing a string value that is the name for the category in which the logs are written. The category is usually the name of the specific function from which the logs are written. To learn more about categories, see the [monitoring article](functions-monitoring.md#log-levels-and-categories).

0 commit comments

Comments
 (0)