You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: x-pack/plugins/encrypted_saved_objects/server/crypto/encryption_key_rotation_service.ts
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -85,15 +85,15 @@ export class EncryptionKeyRotationService {
85
85
86
86
constresult={total: 0,successful: 0,failed: 0};
87
87
if(registeredSavedObjectTypes.length===0){
88
-
this.options.logger.debug(
88
+
this.options.logger.info(
89
89
type
90
90
? `Saved Object type "${type}" is not registered, encryption key rotation is not needed.`
91
91
: 'There are no registered Saved Object types that can have encrypted attributes, encryption key rotation is not needed.'
92
92
);
93
93
returnresult;
94
94
}
95
95
96
-
this.options.logger.debug(
96
+
this.options.logger.info(
97
97
`Saved Objects with the following types [${registeredSavedObjectTypes}] will be processed.`
98
98
);
99
99
@@ -201,7 +201,7 @@ export class EncryptionKeyRotationService {
201
201
}
202
202
}
203
203
204
-
this.options.logger.debug(
204
+
this.options.logger.info(
205
205
`Encryption key rotation is completed. ${result.successful} objects out ouf ${result.total} were successfully re-encrypted with the primary encryption key and ${result.failed} objects failed.`
0 commit comments