Skip to content

Commit c0f13cf

Browse files
MichalCzBudleigh Salterton
authored and
Budleigh Salterton
committed
Remove console.log
1 parent 99e0deb commit c0f13cf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/http-server.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ function HttpServer(options) {
6969
this.headers['Access-Control-Allow-Headers'] = 'Origin, X-Requested-With, Content-Type, Accept, Range';
7070
if (options.cors_headers) {
7171
options.cors_headers.split(/\s*,\s*/)
72-
.forEach(function(h){ console.log(h); this.headers['Access-Control-Allow-Headers'] += ', ' + h; }, this);
72+
.forEach(function(h){ this.headers['Access-Control-Allow-Headers'] += ', ' + h; }, this);
7373
}
7474
before.push(corser.create(options.cors_headers ? {
7575
requestHeaders: this.headers['Access-Control-Allow-Headers'].split(/\s*,\s*/)

0 commit comments

Comments
 (0)