File tree Expand file tree Collapse file tree 2 files changed +22
-0
lines changed Expand file tree Collapse file tree 2 files changed +22
-0
lines changed Original file line number Diff line number Diff line change @@ -315,6 +315,17 @@ const Parse = {
315
315
} ,
316
316
317
317
/**
318
+ * Setting this property to `true` enables enhanced logging for `Parse.Object`
319
+ * in Node.js environments. Specifically, it will log:
320
+ *
321
+ * ```
322
+ * ParseObject: className: <CLASS_NAME>, id: <OBJECT_ID>
323
+ * Attributes: <OBJECT_ATTRIBUTES>
324
+ * ```
325
+ *
326
+ * @warning This should not be enabled in production environments as this may
327
+ * expose sensitive information in server logs.
328
+ *
318
329
* @property {boolean } Parse.nodeLogging
319
330
* @static
320
331
*/
Original file line number Diff line number Diff line change @@ -323,6 +323,17 @@ declare const Parse: {
323
323
*/
324
324
allowCustomObjectId : any ;
325
325
/**
326
+ * Setting this property to `true` enables enhanced logging for `Parse.Object`
327
+ * in Node.js environments. Specifically, it will log:
328
+ *
329
+ * ```
330
+ * ParseObject: className: <CLASS_NAME>, id: <OBJECT_ID>
331
+ * Attributes: <OBJECT_ATTRIBUTES>
332
+ * ```
333
+ *
334
+ * @warning This should not be enabled in production environments as this may
335
+ * expose sensitive information in server logs.
336
+ *
326
337
* @property {boolean } Parse.nodeLogging
327
338
* @static
328
339
*/
You can’t perform that action at this time.
0 commit comments