We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 039015b commit 830a782Copy full SHA for 830a782
src/cache/client.ts
@@ -15,7 +15,9 @@ let instance: CacheClient | undefined = undefined
15
export const getCacheClient = (): CacheClient => {
16
if (!instance) {
17
const config = getCacheConfig()
18
- debug('config: %o', config)
+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
19
+ const { password: _, ...loggableConfig } = config
20
+ debug('config: %o', loggableConfig)
21
instance = createClient(config)
22
}
23
0 commit comments