use of com.codingchili.logging.configuration.LogContext in project chili-core by codingchili.
the class ServiceLogHandlerTest method setUp.
@Before
public void setUp(TestContext test) {
Async async = test.async();
context = new LogContext(new SystemContext(), future);
future.setHandler(done -> {
context.storage().clear(clear -> {
async.complete();
});
handler = new ServiceLogHandler(context);
});
}
Aggregations