diff --git a/src/cache/client.ts b/src/cache/client.ts index d4b819b7..8c743753 100644 --- a/src/cache/client.ts +++ b/src/cache/client.ts @@ -15,7 +15,9 @@ let instance: CacheClient | undefined = undefined export const getCacheClient = (): CacheClient => { if (!instance) { const config = getCacheConfig() - debug('config: %o', config) + // eslint-disable-next-line @typescript-eslint/no-unused-vars + const { password: _, ...loggableConfig } = config + debug('config: %o', loggableConfig) instance = createClient(config) }