Skip to content

Commit 5803188

Browse files
committed
Fix prettier errors
1 parent 82c84d0 commit 5803188

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

fastboot.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ class LoggerWithoutTimestamp {
2121
}
2222

2323
_write(level, args) {
24-
args[0] = `[${level}][${this.prefix}] ${args[0]}`
25-
console.log.apply(console, args)
24+
args[0] = `[${level}][${this.prefix}] ${args[0]}`;
25+
console.log.apply(console, args);
2626
}
2727
}
2828

@@ -46,7 +46,7 @@ var logger = new LoggerWithoutTimestamp();
4646
let server = new FastBootAppServer({
4747
distPath: 'dist',
4848
port: 9000,
49-
ui: logger
49+
ui: logger,
5050
});
5151

5252
if (!cluster.isWorker) {

0 commit comments

Comments
 (0)