mirror of https://git.lenooby09.tech/LeNooby09/social-app.git
1/**
2 * *Do not import this directly.* Instead, use the shortcut reference `logger.DebugContext`.
3 *
4 * Add debug contexts here. Although convention typically calls for enums ito
5 * be capitalized, for parity with the `LOG_DEBUG` env var, please use all
6 * lowercase.
7 */
8export const DebugContext = {
9 // e.g. composer: 'composer'
10 session: 'session',
11 notifications: 'notifications',
12 convo: 'convo',
13} as const