-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy pathdebugging.ts
133 lines (130 loc) · 3.37 KB
/
debugging.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
/**
* ## Debugging
*
* Many portions of the internals are helpfully instrumented with logging that can be activated
* at build time. This instrumentation is always removed from production builds or any builds
* that has not explicitly activated it. To activate it set the appropriate flag to `true`.
*
@module @warp-drive/build-config/debugging
@main @warp-drive/build-config/debugging
*/
/**
*
* Many portions of the internals are helpfully instrumented with logging that can be activated
at build time. This instrumentation is always removed from production builds or any builds
that has not explicitly activated it. To activate it set the appropriate flag to `true`.
```ts
let app = new EmberApp(defaults, {
emberData: {
debug: {
LOG_PAYLOADS: false, // data store received to update cache with
LOG_OPERATIONS: false, // updates to cache remote state
LOG_MUTATIONS: false, // updates to cache local state
LOG_NOTIFICATIONS: false,
LOG_REQUESTS: false,
LOG_REQUEST_STATUS: false,
LOG_IDENTIFIERS: false,
LOG_GRAPH: false,
LOG_INSTANCE_CACHE: false,
}
}
});
```
@class DebugLogging
@public
*/
/**
* log payloads received by the store
* via `push` or returned from a delete/update/create
* operation.
*
* @property {boolean} LOG_PAYLOADS
* @public
*/
export const LOG_PAYLOADS: boolean = false;
/**
* log remote-state updates to the cache
*
* @property {boolean} LOG_OPERATIONS
* @public
*/
export const LOG_OPERATIONS: boolean = false;
/**
* log local-state updates to the cache
*
* @property {boolean} LOG_MUTATIONS
* @public
*/
export const LOG_MUTATIONS: boolean = false;
/**
* log notifications received by the NotificationManager
*
* @property {boolean} LOG_NOTIFICATIONS
* @public
*/
export const LOG_NOTIFICATIONS: boolean = false;
/**
* log requests issued by the RequestManager
*
* @property {boolean} LOG_REQUESTS
* @public
*/
export const LOG_REQUESTS: boolean = false;
/**
* log updates to requests the store has issued to
* the network (adapter) to fulfill.
*
* @property {boolean} LOG_REQUEST_STATUS
* @public
*/
export const LOG_REQUEST_STATUS: boolean = false;
/**
* log peek, generation and updates to
* Record Identifiers.
*
* @property {boolean} LOG_IDENTIFIERS
* @public
*/
export const LOG_IDENTIFIERS: boolean = false;
/**
* log updates received by the graph (relationship pointer storage)
*
* @property {boolean} LOG_GRAPH
* @public
*/
export const LOG_GRAPH: boolean = false;
/**
* log creation/removal of RecordData and Record
* instances.
*
* @property {boolean} LOG_INSTANCE_CACHE
* @public
*/
export const LOG_INSTANCE_CACHE: boolean = false;
/**
* Log key count metrics, useful for performance
* debugging.
*
* @property {boolean} LOG_METRIC_COUNTS
* @public
*/
export const LOG_METRIC_COUNTS: boolean = false;
/**
* Helps when debugging causes of a change notification
* when processing an update to a hasMany relationship.
*
* @property {boolean} DEBUG_RELATIONSHIP_NOTIFICATIONS
* @public
*/
export const DEBUG_RELATIONSHIP_NOTIFICATIONS: boolean = false;
/**
* A private flag to enable logging of the native Map/Set
* constructor and method calls.
*
* EXTREMELY MALPERFORMANT
*
* LOG_METRIC_COUNTS must also be enabled.
*
* @typedoc
*/
export const __INTERNAL_LOG_NATIVE_MAP_SET_COUNTS: boolean = false;