Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
public class LogbackInitializerExtension implements BeforeAllCallback {
@Override
public void beforeAll(ExtensionContext context) throws Exception {
pauseTillLogbackReady();
}
private static void pauseTillLogbackReady() {
while(!isLogbackReady());
}
private static boolean isLogbackReady() {
return LoggerFactory.getILoggerFactory() instanceof LoggerContext;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment