16
16
- [ Usage] ( #usage )
17
17
- [ Properties] ( #properties )
18
18
- [ Code example] ( #code )
19
- - [ Production tips] (#Production tips)
19
+ - [ Production tips] ( #production- tips )
20
20
- [ Maintainers] ( #maintainers )
21
21
- [ Contribute] ( #contribute )
22
22
- [ License] ( #license )
@@ -58,7 +58,7 @@ Below you can find an example of how to use vuejs-logger :
58
58
| Name | Required | Type | Default | Description |
59
59
| --- | --- | --- | --- | --- |
60
60
| 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 ) . |
62
62
| stringifyArguments | false | Boolean | false | If true, all input will go through JSON.stringify(). Useful when printing reactive properties.|
63
63
| showLogLevel | false | Boolean | false | If true, the loglevel will be shown. |
64
64
| 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 :
69
69
70
70
``` js
71
71
import VueLogger from ' vuejs-logger' ;
72
- const isProduction = process .env .NODE_ENV ! === ' production' ;
72
+ const isProduction = process .env .NODE_ENV === ' production' ;
73
73
74
74
const options = {
75
75
isEnabled: true ,
0 commit comments