about summary refs log tree commit diff
path: root/src/logger/debugContext.ts
blob: 9971207866ba3acc6264ec3ab859686c16d8387c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
/**
 * *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',
  convo: 'convo',
} as const