From 490c227a5eb68fe4c03ad4c2dc08b2da265ec595 Mon Sep 17 00:00:00 2001 From: Gregory Ashton <gregory.ashton@ligo.org> Date: Fri, 3 Apr 2020 13:26:34 +1100 Subject: [PATCH] Increase verbosity --- bilby/core/sampler/ptemcee.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bilby/core/sampler/ptemcee.py b/bilby/core/sampler/ptemcee.py index c7584d39f..52afd6440 100644 --- a/bilby/core/sampler/ptemcee.py +++ b/bilby/core/sampler/ptemcee.py @@ -695,9 +695,9 @@ def print_progress( sampling_time = datetime.timedelta(seconds=np.sum(time_per_check)) if max_frac >= 0: - tau_str = "{}(+{:0.1f})".format(tau_int, max_frac) + tau_str = "{}(+{:0.2f})".format(tau_int, max_frac) else: - tau_str = "{}({:0.1f})".format(tau_int, max_frac) + tau_str = "{}({:0.2f})".format(tau_int, max_frac) if tau_usable: tau_str = "={}".format(tau_str) else: -- GitLab