propro-utils 1.4.96 → 1.4.97

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": "propro-utils",
3
- "version": "1.4.96",
3
+ "version": "1.4.97",
4
4
  "description": "Auth middleware for propro-auth",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -340,6 +340,10 @@ class AuthMiddleware {
340
340
 
341
341
  console.log('formattedAuthUrl:', formattedAuthUrl);
342
342
  console.log('req.method:', req.method);
343
+ console.log('req.body:', req.body);
344
+ console.log('req.file:', req.file);
345
+ console.log('formData:', JSON.stringify(formData));
346
+ console.log('headers:', JSON.stringify(headers));
343
347
  return axios({
344
348
  method: req.method,
345
349
  url: `${formattedAuthUrl}${path}`,