From 8eb167fd21ef64906661f0d3c645ff25109d685a Mon Sep 17 00:00:00 2001 From: Miroslav Lichvar Date: Tue, 2 Jun 2020 18:05:43 +0200 Subject: [PATCH] sources: extend mark debug message --- sources.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/sources.c b/sources.c index 6ae7714..fb6a61b 100644 --- a/sources.c +++ b/sources.c @@ -633,10 +633,11 @@ mark_source(SRC_Instance inst, SRC_Status status) { inst->status = status; - DEBUG_LOG("%s status=%d options=%x reach=%o/%d updates=%d distant=%d leap=%d vote=%d", + DEBUG_LOG("%s status=%d options=%x reach=%o/%d updates=%d distant=%d leap=%d vote=%d lo=%f hi=%f", source_to_string(inst), (int)inst->status, (unsigned int)inst->sel_options, (unsigned int)inst->reachability, inst->reachability_size, inst->updates, - inst->distant, (int)inst->leap, inst->leap_vote); + inst->distant, (int)inst->leap, inst->leap_vote, + inst->sel_info.lo_limit, inst->sel_info.hi_limit); } /* ================================================== */