Class DebugLogging
publicMany 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
.
1 2 3 4 5 6 7 8 9 10 11 |
let app = new EmberApp(defaults, { emberData: { debug: { LOG_NOTIFICATIONS: false, LOG_REQUEST_STATUS: false, LOG_IDENTIFIERS: false, LOG_GRAPH: false, LOG_INSTANCE_CACHE: false, } } }); |
LOG_GRAPH public
Defined in ../private-build-infra/addon/debugging.ts:50
log updates received by the graph (relationship pointer storage)
LOG_IDENTIFIERS public
Defined in ../private-build-infra/addon/debugging.ts:42
log peek, generation and updates to Record Identifiers.
LOG_INSTANCE_CACHE public
Defined in ../private-build-infra/addon/debugging.ts:57
log creation/removal of RecordData and Record instances.
LOG_NOTIFICATIONS public
Defined in ../private-build-infra/addon/debugging.ts:27
log notifications received by the RecordNotificationManager
LOG_REQUEST_STATUS public
Defined in ../private-build-infra/addon/debugging.ts:34
log updates to requests the store has issued to the network (adapter) to fulfill.