Commit 04132836 authored by Federico G. Schwindt's avatar Federico G. Schwindt

Cosmetic

parent 89ad4032
......@@ -327,9 +327,10 @@ vbe_panic(const struct director *d, struct vsb *vsb)
VSB_printf(vsb, "ipv6 = %s,\n", bp->ipv6_addr);
VSB_printf(vsb, "port = %s,\n", bp->port);
VSB_printf(vsb, "hosthdr = %s,\n", bp->hosthdr);
VSB_printf(vsb, "health=%s, admin_health=%s",
bp->healthy ? "healthy" : "sick", bp->admin_health);
VSB_printf(vsb, ", changed=%.1f,\n", bp->health_changed);
VSB_printf(vsb, "health = %s,\n",
bp->healthy ? "healthy" : "sick");
VSB_printf(vsb, "admin_health = %s, changed = %f,\n",
bp->admin_health, bp->health_changed);
VSB_printf(vsb, "n_conn = %u,\n", bp->n_conn);
}
......
......@@ -249,7 +249,7 @@ pan_objcore(struct vsb *vsb, const char *typ, const struct objcore *oc)
VSB_printf(vsb, "exp_flags = 0x%x,\n", oc->exp_flags);
if (oc->boc != NULL)
pan_boc(vsb, oc->boc);
VSB_printf(vsb, "exp = { %f, %f, %f, %f }\n",
VSB_printf(vsb, "exp = {%f,%f,%f,%f}\n",
oc->t_origin, oc->ttl, oc->grace, oc->keep);
VSB_printf(vsb, "objhead = %p,\n", oc->objhead);
VSB_printf(vsb, "stevedore = %p", oc->stobj->stevedore);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment