mirror of
https://github.com/matrix-construct/construct
synced 2024-12-26 07:23:53 +01:00
construct: Fix log message format for header/lib mismatch.
This commit is contained in:
parent
87dafbf8ea
commit
4c95fc94a5
1 changed files with 3 additions and 1 deletions
|
@ -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,
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue