mirror of
https://github.com/matrix-construct/construct
synced 2024-12-27 07:54:05 +01:00
ircd::db: Minor cleanup.
This commit is contained in:
parent
47800ba094
commit
1c11e6b2c1
1 changed files with 10 additions and 10 deletions
20
ircd/db.cc
20
ircd/db.cc
|
@ -8,7 +8,6 @@
|
|||
// copyright notice and this permission notice is present in all copies. The
|
||||
// full license for this software is available in the LICENSE file.
|
||||
|
||||
|
||||
#include "db.h"
|
||||
|
||||
/// Dedicated logging facility for the database subsystem
|
||||
|
@ -3453,15 +3452,16 @@ noexcept
|
|||
{
|
||||
assert(d && replace && replaced);
|
||||
|
||||
if(debug) log::debug
|
||||
{
|
||||
log, "[%s] WAL recovery record log:%lu '%s' wb[count:%zu size:%zu]",
|
||||
db::name(*d),
|
||||
log_nr,
|
||||
name,
|
||||
wb.Count(),
|
||||
wb.GetDataSize(),
|
||||
};
|
||||
if(debug)
|
||||
log::debug
|
||||
{
|
||||
log, "[%s] WAL recovery record log:%lu '%s' wb[count:%zu size:%zu]",
|
||||
db::name(*d),
|
||||
log_nr,
|
||||
name,
|
||||
wb.Count(),
|
||||
wb.GetDataSize(),
|
||||
};
|
||||
|
||||
*replaced = false;
|
||||
return WalProcessingOption::kContinueProcessing;
|
||||
|
|
Loading…
Reference in a new issue