Skip to content

Commit f6f317b

Browse files
authored
refactor
Signed-off-by: Manuel <[email protected]>
1 parent f2a858d commit f6f317b

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

Diff for: src/cli/utils/runner.js

+7-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,13 @@ function logStartupOptions(options) {
55
return;
66
}
77
// Keys that may include sensitive information that will be redacted in logs
8-
const keysToRedact = ['databaseAdapter', 'databaseURI', 'masterKey', 'maintenanceKey', 'push'];
8+
const keysToRedact = [
9+
'databaseAdapter',
10+
'databaseURI',
11+
'masterKey',
12+
'maintenanceKey',
13+
'push',
14+
];
915
for (const key in options) {
1016
let value = options[key];
1117
if (keysToRedact.includes(key)) {

0 commit comments

Comments
 (0)