c9cf608f78
* Initial working external store * Clean up WIP, explore suspend/resume * Clean up state, bindings, snapshots, add some logs * Reduce snapshots, add better logic check * Bump interval a smidge * Remove unused type
14 lines
417 B
TypeScript
14 lines
417 B
TypeScript
/**
|
|
* *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
|