Skip to content

Commit cd1a8ed

Browse files
committed
remove console.log
remove console.log
1 parent 5075356 commit cd1a8ed

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/smooth-server.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ module.exports = class SmoothServer {
2222
initOptions() {
2323
let argv = minimist(process.argv.slice(2));
2424
let configFile = argv.c || argv.config || 'browser-sync.config.json'; // browserSync configs options https://www.browsersync.io/docs/options
25-
console.log(configFile);
2625
this.overrides = {}
26+
2727
try {
2828
this.overrides = require(path.resolve(configFile));
2929
console.log(this.overrides);
@@ -36,3 +36,4 @@ module.exports = class SmoothServer {
3636
}
3737
}
3838
}
39+

0 commit comments

Comments
 (0)