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 319a3f6 commit cfd6b35Copy full SHA for cfd6b35
project/Profilers.scala
@@ -35,7 +35,7 @@ case object basic extends Profiler("basic") {
35
def command(outDir: File): String = "-jvmArgs -Xprof -prof hs_comp -prof gc -prof stack -prof hs_rt -prof scala.tools.nsc.ThreadCpuTimeProfiler"
36
}
37
case object jfr extends Profiler("jfr") {
38
- def command(outDir: File): String = s"-prof jmh.extras.JFR:dir=${outDir.getAbsolutePath};flameGraphOpts=$flameGraphOpts;verbose=true'"
+ def command(outDir: File): String = s"""-prof "jmh.extras.JFR:dir=${outDir.getAbsolutePath};flameGraphOpts=$flameGraphOpts;verbose=true" """
39
40
sealed abstract class async(event: String) extends Profiler("async-" + event) {
41
val framebuf = 33554432
0 commit comments