Skip to content

Commit 6114477

Browse files
committed
Updated README.md.
1 parent 1d5d188 commit 6114477

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
- [Usage](#usage)
1717
- [Properties](#properties)
1818
- [Code example](#code)
19-
- [Production tips](#Production tips)
19+
- [Production tips](#production-tips)
2020
- [Maintainers](#maintainers)
2121
- [Contribute](#contribute)
2222
- [License](#license)
@@ -58,7 +58,7 @@ Below you can find an example of how to use vuejs-logger :
5858
| Name | Required | Type | Default | Description |
5959
| --- | --- | --- | --- | --- |
6060
| isEnabled | false | Boolean | true | Enables the vuejs-logger plugin, useful toggle for production/development. |
61-
| logLevel | false | String | 'debug' | Choose between ['debug', 'info', 'warn', 'error', 'fatal']. Read [production tips](#Production tips). |
61+
| logLevel | false | String | 'debug' | Choose between ['debug', 'info', 'warn', 'error', 'fatal']. Read [production tips](#production-tips). |
6262
| stringifyArguments | false | Boolean | false | If true, all input will go through JSON.stringify(). Useful when printing reactive properties.|
6363
| showLogLevel | false | Boolean | false | If true, the loglevel will be shown. |
6464
| showMethodName | false | Boolean | false | If true, the method name of the parent function will be shown in the console. |
@@ -69,7 +69,7 @@ Below you can find an example of how to use vuejs-logger :
6969

7070
```js
7171
import VueLogger from 'vuejs-logger';
72-
const isProduction = process.env.NODE_ENV !=== 'production';
72+
const isProduction = process.env.NODE_ENV === 'production';
7373

7474
const options = {
7575
isEnabled: true,

0 commit comments

Comments
 (0)