Skip to content

Commit

Permalink
refactor: log without JSON.stringify
Browse files Browse the repository at this point in the history
  • Loading branch information
mshanemc committed Jul 21, 2023
1 parent 06cf627 commit cbe1090
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/org/connection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ export class Connection<S extends Schema = Schema> extends JSForceConnection<S>
...SFDX_HTTP_HEADERS,
...lowercasedHeaders,
};
this.logger.debug(`request: ${JSON.stringify(httpRequest)}`);
this.logger.getRawLogger().debug(httpRequest, 'request');
return super.request(httpRequest, options);
}

Expand Down

0 comments on commit cbe1090

Please sign in to comment.