We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ef467c commit 4758ecfCopy full SHA for 4758ecf
1 file changed
affinity/src/main/java/net/openhft/affinity/impl/VanillaCpuLayout.java
@@ -20,6 +20,7 @@
20
import net.openhft.affinity.CpuLayout;
21
import org.jetbrains.annotations.NotNull;
22
import org.jetbrains.annotations.Nullable;
23
+import org.slf4j.LoggerFactory;
24
25
import java.io.*;
26
import java.util.*;
@@ -60,7 +61,7 @@ public class VanillaCpuLayout implements CpuLayout {
60
61
for (CpuInfo detail : cpuDetails) {
62
error.append(detail).append('\n');
63
}
- throw new AssertionError(error);
64
+ LoggerFactory.getLogger(VanillaCpuLayout.class).warn(error.toString());
65
66
67
0 commit comments