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 +1 -1
- package/src/server/index.js +4 -0
package/package.json
CHANGED
package/src/server/index.js
CHANGED
|
@@ -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}`,
|