Skip to content

Commit

Permalink
Update lib/winston/transports/http.js
Browse files Browse the repository at this point in the history
  • Loading branch information
DABH committed Mar 24, 2024
1 parent a8f9138 commit f277edf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/winston/transports/http.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ module.exports = class Http extends TransportStream {
this.port = options.port;
this.auth = options.auth;
this.path = options.path || '';
this.maximumDepth = options.maximumDepth || 10;
this.maximumDepth = options.maximumDepth || Infinity;
this.agent = options.agent;
this.headers = options.headers || {};
this.headers['content-type'] = 'application/json';
Expand Down

0 comments on commit f277edf

Please sign in to comment.