Skip to content

Commit b380ed9

Browse files
authoredOct 30, 2020
fix(docs): Remove broken client-options link (#1920)
1 parent 44e438c commit b380ed9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎docs/src/pages/api/11_logging.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ title: "Logging"
99
1. `octokit.log.warn(message[, additionalInfo])`
1010
1. `octokit.log.error(message[, additionalInfo])`
1111

12-
They can be configured using the [`log` client option](client-options). By default, `octokit.log.debug()` and `octokit.log.info()` are no-ops, while the other two call `console.warn()` and `console.error()` respectively.
12+
They can be configured using the `log` client option. By default, `octokit.log.debug()` and `octokit.log.info()` are no-ops, while the other two call `console.warn()` and `console.error()` respectively.
1313

1414
This is useful if you build reusable [plugins](#plugins).

‎docs/src/pages/api/12_debug.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: "Debug"
33
---
44

5-
The simplest way to receive debug information is to set the [`log` client option](client-options) to `console`.
5+
The simplest way to receive debug information is to set the `log` client option to `console`.
66

77
```js
88
const octokit = require("@octokit/rest")({

0 commit comments

Comments
 (0)
Please sign in to comment.