diff options
Diffstat (limited to 'src/logger/debugContext.ts')
-rw-r--r-- | src/logger/debugContext.ts | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/src/logger/debugContext.ts b/src/logger/debugContext.ts deleted file mode 100644 index 997120786..000000000 --- a/src/logger/debugContext.ts +++ /dev/null @@ -1,13 +0,0 @@ -/** - * *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 |