We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a0fc9f commit 68f209fCopy full SHA for 68f209f
services/src/test/java/io/scalecube/services/BaseTest.java
@@ -5,11 +5,17 @@
5
import org.junit.jupiter.api.TestInfo;
6
import org.slf4j.Logger;
7
import org.slf4j.LoggerFactory;
8
+import reactor.core.publisher.Hooks;
9
10
public abstract class BaseTest {
11
12
protected static final Logger LOGGER = LoggerFactory.getLogger(BaseTest.class);
13
14
+ static {
15
+ Hooks.onErrorDropped(
16
+ throwable -> LOGGER.warn("[onErrorDropped] error: {}", throwable.toString()));
17
+ }
18
+
19
@BeforeEach
20
public final void baseSetUp(TestInfo testInfo) {
21
LOGGER.info(
0 commit comments