Skip to content

Commit ef8fbe7

Browse files
committed
warn -> error
1 parent 9b89b1c commit ef8fbe7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

polaris-service/src/main/java/io/polaris/service/BootstrapRealmsCommand.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ protected void run(
6969
for (Map.Entry<String, PolarisMetaStoreManager.PrincipalSecretsResult> result :
7070
results.entrySet()) {
7171
if (!result.getValue().isSuccess()) {
72-
LOGGER.warn(
72+
LOGGER.error(
7373
"Bootstrapping `{}` failed: {}",
7474
result.getKey(),
7575
result.getValue().getReturnStatus().toString());
@@ -80,7 +80,7 @@ protected void run(
8080
if (success) {
8181
LOGGER.info("Bootstrap completed successfully.");
8282
} else {
83-
LOGGER.warn("Bootstrap encountered errors during operation.");
83+
LOGGER.error("Bootstrap encountered errors during operation.");
8484
}
8585
}
8686
}

0 commit comments

Comments
 (0)