Class DebugLogging

public

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.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  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,
      }
    }
  });

Show:

log updates received by the graph (relationship pointer storage)

log peek, generation and updates to Record Identifiers.

log creation/removal of RecordData and Record instances.

log local-state updates to the cache

log notifications received by the NotificationManager

log remote-state updates to the cache

log payloads received by the store via push or returned from a delete/update/create operation.

log requests issued by the RequestManager

log updates to requests the store has issued to the network (adapter) to fulfill.