Skip to content

Commit

Permalink
Fix options schema inconsistency for logLevel (#1372)
Browse files Browse the repository at this point in the history
The correct level name expected by webpack-log is 'silent' rather than 'none'
  • Loading branch information
sergkop authored and SpaceK33z committed May 2, 2018
1 parent 623d337 commit 2dafb77
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/optionsSchema.json
Expand Up @@ -67,14 +67,14 @@
"type": "object"
},
"logLevel": {
"description": "Log level in the terminal/console (trace, debug, info, warn, error or none)",
"description": "Log level in the terminal/console (trace, debug, info, warn, error or silent)",
"enum": [
"trace",
"debug",
"info",
"warn",
"error",
"none"
"silent"
]
},
"clientLogLevel": {
Expand Down

0 comments on commit 2dafb77

Please sign in to comment.