0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-24 17:38:54 +02:00

construct: Fix log message format for header/lib mismatch.

This commit is contained in:
Jason Volk 2019-06-19 13:32:40 -07:00
parent 87dafbf8ea
commit 4c95fc94a5

View file

@ -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,
};