Skip to content

Commit 636f651

Browse files
committed
fix links
1 parent db6cd9a commit 636f651

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

articles/azure-functions/functions-monitoring.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ See the developer guide for your language to learn more about writing logs from
121121

122122
+ [C# (.NET class library)](functions-dotnet-class-library.md#logging)
123123
+ [Java](functions-reference-java.md#logger)
124-
+ [JavaScript](functions-reference-node.md#write-trace-output-to-logs)
124+
+ [JavaScript](functions-reference-node.md#logging)
125125
+ [PowerShell](functions-reference-powershell.md#logging)
126126
+ [Python](functions-reference-python.md#logging)
127127

articles/azure-functions/functions-reference-node.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ Outputs (bindings with `"direction": "out"`) can be set in several ways:
260260

261261
You can use the `dataType` property on an input binding to change the type of your input, however it has some limitations:
262262
- In Node.js, only `string` and `binary` are supported (`stream` isn't)
263-
- For http inputs, the `dataType` property is ignored. Instead, use properties on the `request` object to get the body in your desired format. For more information, see [request](#request).
263+
- For http inputs, the `dataType` property is ignored. Instead, use properties on the `request` object to get the body in your desired format. For more information, see [request](#http-request).
264264
265265
In the following example of a storage queue trigger, the default type of `myQueueItem` is a `string`, but if you set `dataType` to `binary` the type changes to a Node.js `Buffer`.
266266
@@ -517,6 +517,7 @@ For more information, see [`retry-policies`](./functions-bindings-errors.md#retr
517517
::: zone-end
518518

519519
<a name="contextlog-method"></a>
520+
<a name="write-trace-output-to-logs"></a>
520521

521522
## Logging
522523

0 commit comments

Comments
 (0)