diff --git a/src/logger/types.ts b/src/logger/types.ts index ab9707b41b..826a1bcc1e 100644 --- a/src/logger/types.ts +++ b/src/logger/types.ts @@ -15,6 +15,7 @@ export enum LogContext { AgeAssurance = 'age-assurance', PolicyUpdate = 'policy-update', Geolocation = 'geolocation', + Drafts = 'drafts', /** * METRIC IS FOR INTERNAL USE ONLY, don't create any other loggers using this diff --git a/src/state/drafts/logger.ts b/src/state/drafts/logger.ts new file mode 100644 index 0000000000..8cf9c10609 --- /dev/null +++ b/src/state/drafts/logger.ts @@ -0,0 +1,3 @@ +import {Logger} from '#/logger' + +export const logger = Logger.create(Logger.Context.Drafts)