Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: update clientLogLevel to match docs and error #1825

Merged
merged 1 commit into from Apr 27, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 2 additions & 1 deletion bin/options.js
Expand Up @@ -85,7 +85,8 @@ const options = {
type: 'string',
group: DISPLAY_GROUP,
default: 'info',
describe: 'Log level in the browser (info, warning, error or none)',
describe:
'Log level in the browser (trace, debug, info, warn, error or silent)',
},
https: {
type: 'boolean',
Expand Down
15 changes: 8 additions & 7 deletions client-src/default/index.js
Expand Up @@ -54,9 +54,11 @@ let useErrorOverlay = false;
let useProgress = false;

const INFO = 'info';
const WARNING = 'warning';
const WARN = 'warn';
const ERROR = 'error';
const NONE = 'none';
const DEBUG = 'debug';
const TRACE = 'trace';
const SILENT = 'silent';

// Set the default log level
log.setDefaultLevel(INFO);
Expand Down Expand Up @@ -108,14 +110,13 @@ const onSocketMsg = {
}
switch (level) {
case INFO:
case WARN:
case DEBUG:
case TRACE:
case ERROR:
log.setLevel(level);
break;
case WARNING:
// loglevel's warning name is different from webpack's
log.setLevel('warn');
break;
case NONE:
case SILENT:
log.disableAll();
break;
default:
Expand Down
4 changes: 2 additions & 2 deletions lib/options.json
Expand Up @@ -37,7 +37,7 @@
]
},
"clientLogLevel": {
"enum": ["none", "info", "error", "warning"]
"enum": ["info", "warn", "error", "debug", "trace", "silent"]
},
"compress": {
"type": "boolean"
Expand Down Expand Up @@ -354,7 +354,7 @@
"bonjour": "should be {Boolean} (https://webpack.js.org/configuration/dev-server/#devserverbonjour)",
"ca": "should be {String|Buffer}",
"cert": "should be {String|Buffer}",
"clientLogLevel": "should be {String} and equal to one of the allowed values\n\n [ 'none', 'info', 'error', 'warning' ]\n\n (https://webpack.js.org/configuration/dev-server/#devserverclientloglevel)",
"clientLogLevel": "should be {String} and equal to one of the allowed values\n\n [ 'info', 'warn', 'error', 'debug', 'trace', 'silent' ]\n\n (https://webpack.js.org/configuration/dev-server/#devserverclientloglevel)",
"compress": "should be {Boolean} (https://webpack.js.org/configuration/dev-server/#devservercompress)",
"contentBase": "should be {Number|String|Array} (https://webpack.js.org/configuration/dev-server/#devservercontentbase)",
"disableHostCheck": "should be {Boolean} (https://webpack.js.org/configuration/dev-server/#devserverdisablehostcheck)",
Expand Down
8 changes: 5 additions & 3 deletions test/options/__snapshots__/options.test.js.snap
Expand Up @@ -10,7 +10,7 @@ Object {
"cert": "should be {String|Buffer}",
"clientLogLevel": "should be {String} and equal to one of the allowed values
[ 'none', 'info', 'error', 'warning' ]
[ 'info', 'warn', 'error', 'debug', 'trace', 'silent' ]
(https://webpack.js.org/configuration/dev-server/#devserverclientloglevel)",
"compress": "should be {Boolean} (https://webpack.js.org/configuration/dev-server/#devservercompress)",
Expand Down Expand Up @@ -109,10 +109,12 @@ Object {
},
"clientLogLevel": Object {
"enum": Array [
"none",
"info",
"warn",
"error",
"warning",
"debug",
"trace",
"silent",
],
},
"compress": Object {
Expand Down
30 changes: 26 additions & 4 deletions test/options/clientLogLevel.test.js
Expand Up @@ -27,10 +27,10 @@ describe('Validation', () => {
}
});

it('should allow clientLogLevel to be a "none"', () => {
it('should allow clientLogLevel to be a "silent"', () => {
let error = null;
try {
const clientLogLevel = 'none';
const clientLogLevel = 'silent';
server = new Server(compiler, { clientLogLevel });
} catch (err) {
error = err;
Expand Down Expand Up @@ -60,10 +60,32 @@ describe('Validation', () => {
expect(error).toBe(null);
});

it('should allow clientLogLevel to be a "warning"', () => {
it('should allow clientLogLevel to be a "warn"', () => {
let error = null;
try {
const clientLogLevel = 'warning';
const clientLogLevel = 'warn';
server = new Server(compiler, { clientLogLevel });
} catch (err) {
error = err;
}
expect(error).toBe(null);
});

it('should allow clientLogLevel to be a "trace"', () => {
let error = null;
try {
const clientLogLevel = 'trace';
server = new Server(compiler, { clientLogLevel });
} catch (err) {
error = err;
}
expect(error).toBe(null);
});

it('should allow clientLogLevel to be a "debug"', () => {
let error = null;
try {
const clientLogLevel = 'debug';
server = new Server(compiler, { clientLogLevel });
} catch (err) {
error = err;
Expand Down