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 9b89b1c commit ef8fbe7Copy full SHA for ef8fbe7
polaris-service/src/main/java/io/polaris/service/BootstrapRealmsCommand.java
@@ -69,7 +69,7 @@ protected void run(
69
for (Map.Entry<String, PolarisMetaStoreManager.PrincipalSecretsResult> result :
70
results.entrySet()) {
71
if (!result.getValue().isSuccess()) {
72
- LOGGER.warn(
+ LOGGER.error(
73
"Bootstrapping `{}` failed: {}",
74
result.getKey(),
75
result.getValue().getReturnStatus().toString());
@@ -80,7 +80,7 @@ protected void run(
80
if (success) {
81
LOGGER.info("Bootstrap completed successfully.");
82
} else {
83
- LOGGER.warn("Bootstrap encountered errors during operation.");
+ LOGGER.error("Bootstrap encountered errors during operation.");
84
}
85
86
0 commit comments