Testsuite PoC - Log requested config when using remote server (#32193)
Signed-off-by: stianst <stianst@gmail.com>
This commit is contained in:
parent
6a9245546e
commit
033314446b
1 changed files with 5 additions and 0 deletions
|
@ -1,11 +1,16 @@
|
|||
package org.keycloak.test.framework.server;
|
||||
|
||||
import org.jboss.logging.Logger;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public class RemoteKeycloakTestServer implements KeycloakTestServer {
|
||||
|
||||
private static final Logger LOGGER = Logger.getLogger(RemoteKeycloakTestServer.class);
|
||||
|
||||
@Override
|
||||
public void start(List<String> rawOptions) {
|
||||
LOGGER.infov("Requested server config: {0}", String.join(" ", rawOptions));
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in a new issue