From 7390c2cc2a8d81ecdfc63f7b1d83eabfc7424b3c Mon Sep 17 00:00:00 2001 From: Caleb Schilly Date: Fri, 10 Jan 2025 10:01:51 -0500 Subject: [PATCH] #2391: Print when lb statistics are off --- src/vt/runtime/runtime_banner.cc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/vt/runtime/runtime_banner.cc b/src/vt/runtime/runtime_banner.cc index b42cc59c52..3008bc7c61 100644 --- a/src/vt/runtime/runtime_banner.cc +++ b/src/vt/runtime/runtime_banner.cc @@ -381,6 +381,9 @@ void Runtime::printStartupBanner() { auto f12 = opt_on("--vt_lb_statistics_file", f11); fmt::print("{}\t{}{}", vt_pre, f12, reset); } + } else { + auto f9 = opt_off("--vt_lb_statistics", "Load balancing statistics file dumping disabled"); + fmt::print("{}\t{}{}", vt_pre, f9, reset); } #if !vt_check_enabled(trace_enabled)