Skip to content

Commit 94b64f1

Browse files
committed
reduce web server logging
1 parent a85d931 commit 94b64f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/webserver.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,7 @@ WebServer.prototype.handleWebConnection = function (socket) {
344344
WebServer.prototype.start = function () {
345345

346346
this.app = Express();
347-
this.app.use(Morgan('combined'))
347+
this.app.use(Morgan('tiny'))
348348
this.app.use(Multer({ dest: './uploads/'}).any());
349349
//this.app = Connect();
350350
this.server = Http.createServer(this.app);

0 commit comments

Comments
 (0)