Skip to content

Commit

Permalink
warn -> error
Browse files Browse the repository at this point in the history
  • Loading branch information
eric-maynard committed Aug 9, 2024
1 parent 9b89b1c commit ef8fbe7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ protected void run(
for (Map.Entry<String, PolarisMetaStoreManager.PrincipalSecretsResult> result :
results.entrySet()) {
if (!result.getValue().isSuccess()) {
LOGGER.warn(
LOGGER.error(
"Bootstrapping `{}` failed: {}",
result.getKey(),
result.getValue().getReturnStatus().toString());
Expand All @@ -80,7 +80,7 @@ protected void run(
if (success) {
LOGGER.info("Bootstrap completed successfully.");
} else {
LOGGER.warn("Bootstrap encountered errors during operation.");
LOGGER.error("Bootstrap encountered errors during operation.");
}
}
}

0 comments on commit ef8fbe7

Please sign in to comment.