commit | c4a9c748ead10b0ed99c0bfddccf70ea3f650a4d | [log] [tgz] |
---|---|---|
author | Søren Gjesse <sgjesse@google.com> | Mon Apr 28 17:24:12 2025 +0200 |
committer | Søren Gjesse <sgjesse@google.com> | Mon Apr 28 08:35:40 2025 -0700 |
tree | b53e0fedfd668b173c8ee988cfe93f4f5b89c874 | |
parent | e68dae140c714f2f38392b110089e7abf9f879e0 [diff] |
Minor update to partial compilation seed message Change-Id: I2aae5e710e26ebc3d3af0ace97e8470119acbf91
diff --git a/src/main/java/com/android/tools/r8/partial/R8PartialCompilationConfiguration.java b/src/main/java/com/android/tools/r8/partial/R8PartialCompilationConfiguration.java index 20514e3..4c33c1f 100644 --- a/src/main/java/com/android/tools/r8/partial/R8PartialCompilationConfiguration.java +++ b/src/main/java/com/android/tools/r8/partial/R8PartialCompilationConfiguration.java
@@ -143,7 +143,12 @@ public Builder randomizeForTesting(long seed) { randomizeForTesting = new Random(); randomizeForTesting.setSeed(seed); - System.out.println("Partial compilation seed: " + seed); + System.out.println( + "Partial compilation seed: " + + seed + + ". Use .setPartialCompilationSeed(parameters, " + + seed + + "L) to reproduce."); return this; }