cloudcms-server 3.2.340 → 3.2.341
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.
|
@@ -385,6 +385,19 @@ exports = module.exports = function()
|
|
|
385
385
|
|
|
386
386
|
return function (err, profile, info) {
|
|
387
387
|
|
|
388
|
+
console.log("z1: ", err);
|
|
389
|
+
if (err) {
|
|
390
|
+
console.log("z1.2: " + JSON.stringify(err, null, 2));
|
|
391
|
+
}
|
|
392
|
+
console.log("z2: ", profile);
|
|
393
|
+
if (profile) {
|
|
394
|
+
console.log("z2.2: ", JSON.stringify(profile, null, 2));
|
|
395
|
+
}
|
|
396
|
+
console.log("z3: " + info);
|
|
397
|
+
if (info) {
|
|
398
|
+
console.log("z3.2: ", JSON.stringify(info, null, 2));
|
|
399
|
+
}
|
|
400
|
+
|
|
388
401
|
if (err) {
|
|
389
402
|
return handleFailure(err, res);
|
|
390
403
|
}
|