From ea533f43fc36bfc13684e519729f2768adbf7758 Mon Sep 17 00:00:00 2001 From: Tyler Neely Date: Tue, 22 Nov 2022 16:06:57 +0000 Subject: [PATCH] Print out the simulator seed when we exceed the configured abort_time --- src/io/simulator/simulator_handle.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/io/simulator/simulator_handle.cpp b/src/io/simulator/simulator_handle.cpp index 674920d8e..cc0bd0598 100644 --- a/src/io/simulator/simulator_handle.cpp +++ b/src/io/simulator/simulator_handle.cpp @@ -118,7 +118,8 @@ bool SimulatorHandle::MaybeTickSimulator() { if (cluster_wide_time_microseconds_ >= config_.abort_time) { spdlog::error( "Cluster has executed beyond its configured abort_time, and something may be failing to make progress " - "in an expected amount of time."); + "in an expected amount of time. The SimulatorConfig.rng_seed for this run is {}", + config_.rng_seed); throw utils::BasicException{"Cluster has executed beyond its configured abort_time"}; }