about summary refs log tree commit diff
path: root/src/logger/debugContext.ts
blob: 0e04752e3fe8659c52b521ff4938da83779e374f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
/**
 * *Do not import this directly.* Instead, use the shortcut reference `logger.DebugContext`.
 *
 * Add debug contexts here. Although convention typically calls for enums ito
 * be capitalized, for parity with the `LOG_DEBUG` env var, please use all
 * lowercase.
 */
export const DebugContext = {
  // e.g. composer: 'composer'
  session: 'session',
  notifications: 'notifications',
} as const