Skip to content

Instantly share code, notes, and snippets.

@wkorando
Last active August 6, 2018 20:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wkorando/22d9026397dc9b8e338084bc4fcd6ad7 to your computer and use it in GitHub Desktop.
Save wkorando/22d9026397dc9b8e338084bc4fcd6ad7 to your computer and use it in GitHub Desktop.
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