mirror of
https://github.com/keycloak/keycloak.git
synced 2026-01-25 16:42:34 +00:00
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:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user