From e9a48f82e5186d95253211f1abfc8010dd81a335 Mon Sep 17 00:00:00 2001 From: Joshua Young Date: Tue, 29 Oct 2024 16:18:49 +1000 Subject: [PATCH] Include allocation interval in autorun log --- lib/vernier/autorun.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/vernier/autorun.rb b/lib/vernier/autorun.rb index 247c942..f154245 100644 --- a/lib/vernier/autorun.rb +++ b/lib/vernier/autorun.rb @@ -20,7 +20,7 @@ def self.start allocation_interval = options.fetch(:allocation_interval, 0).to_i hooks = options.fetch(:hooks, "").split(",") - STDERR.puts("starting profiler with interval #{interval}") + STDERR.puts("starting profiler with interval #{interval} and allocation interval #{allocation_interval}") @collector = Vernier::Collector.new(:wall, interval:, allocation_interval:, hooks:) @collector.start