Add JDK suite to the new testing framework and run it as part of the Java Distribution IT (#36638)

Closes #35388

Signed-off-by: Miquel Simon <msimonma@redhat.com>
This commit is contained in:
Miquel Simon
2025-01-24 10:08:11 +01:00
committed by GitHub
parent bd807ceac3
commit 2dbf58dc46
3 changed files with 16 additions and 12 deletions

View File

@@ -147,22 +147,12 @@ public class KeycloakServerConfigBuilder {
option("log-console-format", format);
}
StringBuilder logLevel = new StringBuilder();
if (rootLevel != null) {
logLevel.append(rootLevel);
option("log-level", rootLevel);
}
for (Map.Entry<String, String> e : categoryLevels.entrySet()) {
if (!logLevel.isEmpty()) {
logLevel.append(",");
}
logLevel.append(e.getKey());
logLevel.append(":");
logLevel.append(e.getValue());
}
if (!logLevel.isEmpty()) {
option("log-level", logLevel.toString());
option("log-level-" + e.getKey(), e.getValue());
}
if (color != null) {