Skip to content

Commit

Permalink
fix: lower logging level of fetches
Browse files Browse the repository at this point in the history
  • Loading branch information
Tobiah committed Aug 21, 2019
1 parent 757459b commit 15f0560
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jsoncache.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ class JSONCache extends EventEmitter {
httpGet() {
return new this.Promise((resolve) => {
const request = this.protocol.get(this.url, (response) => {
this.logger.info(`beginning request to ${this.url}`);
this.logger.debug(`beginning request to ${this.url}`);
const body = [];

if (response.statusCode < 200 || response.statusCode > 299) {
Expand Down

0 comments on commit 15f0560

Please sign in to comment.