This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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