From 4c95fc94a5f82beb2bcb0be15740919f38436876 Mon Sep 17 00:00:00 2001 From: Jason Volk Date: Wed, 19 Jun 2019 13:32:40 -0700 Subject: [PATCH] construct: Fix log message format for header/lib mismatch. --- construct/construct.cc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/construct/construct.cc b/construct/construct.cc index 9da6c7447..7865f0795 100644 --- a/construct/construct.cc +++ b/construct/construct.cc @@ -273,9 +273,11 @@ try if(RB_TIME_CONFIGURED > ircd::info::configured_time || RB_TIME_CONFIGURED < ircd::info::configured_time) ircd::log::warning { - "Header configuration time:%ld %s than library configuration time:%ld.", + "Header configuration time:%ld (%s) %s than library configuration time:%ld (%s).", + RB_TIME_CONFIGURED, RB_VERSION_TAG, RB_TIME_CONFIGURED > ircd::info::configured_time? "newer" : "older", + ircd::info::configured, ircd::info::tag, };