From 8afbad26d965204b48df9da534fb931c16558887 Mon Sep 17 00:00:00 2001 From: Luck Date: Sat, 20 Mar 2021 14:59:45 +0000 Subject: Switch to protobuf lite Quite a significant reduction in jar size, yay --- .../java/me/lucko/spark/common/sampler/async/AsyncProfilerAccess.java | 1 + 1 file changed, 1 insertion(+) (limited to 'spark-common/src/main/java/me/lucko/spark') diff --git a/spark-common/src/main/java/me/lucko/spark/common/sampler/async/AsyncProfilerAccess.java b/spark-common/src/main/java/me/lucko/spark/common/sampler/async/AsyncProfilerAccess.java index 71ff425..50e97aa 100644 --- a/spark-common/src/main/java/me/lucko/spark/common/sampler/async/AsyncProfilerAccess.java +++ b/spark-common/src/main/java/me/lucko/spark/common/sampler/async/AsyncProfilerAccess.java @@ -114,6 +114,7 @@ public final class AsyncProfilerAccess { public boolean isSupported() { if (this.setupException != null) { System.out.println("[spark] async-profiler engine is not supported on your system: " + this.setupException.getMessage()); + System.out.println("[spark] Please see here for more information: https://spark.lucko.me/docs/misc/Using-async-profiler"); } return this.profiler != null; } -- cgit