Skip to content

Commit

Permalink
logerror
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-bmikaili committed Aug 15, 2024
1 parent a929778 commit 42a23ca
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -108,15 +108,15 @@ static <T> Blob constructBlobAndMetadata(

// Check if encryption key is available
if (encryptionKey == null) {
logger.logInfo(
logger.logError(
"Encryption key is not available for table={}, blob={}",
firstChannelFlushContext.getFullyQualifiedTableName(),
filePath);

// Print the entire encryptionKeysPerTable Map
for (Map.Entry<FullyQualifiedTableName, EncryptionKey> entry :
encryptionKeysPerTable.entrySet()) {
logger.logInfo("Key = " + entry.getKey() + ", Value = " + entry.getValue());
logger.logError("Key = " + entry.getKey() + ", Value = " + entry.getValue());
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -292,6 +292,7 @@ public CompletableFuture<Void> close() {
}

@Override
// BERZAN
public CompletableFuture<Void> close(boolean drop) {
checkValidation();

Expand Down

0 comments on commit 42a23ca

Please sign in to comment.