lhisp-oauth-client 1.0.10 → 1.0.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lhisp-oauth-client",
3
- "version": "1.0.10",
3
+ "version": "1.0.11",
4
4
  "main": "src/index",
5
5
  "types": "src/index.d.ts",
6
6
  "repository": "git@bitbucket.org:leandro_costa/lhisp-oauth-client.git",
@@ -140,7 +140,15 @@ class LhispOauthClient {
140
140
  return response.data;
141
141
  }
142
142
  catch (error) {
143
- lhisp_logger_1.default.error({ message: "LhispOauthClient.executarRequest", method, path, data, params, contentType, error });
143
+ lhisp_logger_1.default.error({
144
+ message: "LhispOauthClient.executarRequest",
145
+ method,
146
+ url: `${this.apiUrl}${path}`,
147
+ data,
148
+ params,
149
+ contentType,
150
+ error,
151
+ });
144
152
  throw error;
145
153
  }
146
154
  });