0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-10-01 13:18:58 +02:00

ircd::db: Fix coderot under RB_DEBUG_DB_SEEK.

This commit is contained in:
Jason Volk 2020-06-08 23:53:01 -07:00
parent ec1a94858d
commit 2f1523ffb2

View file

@ -8000,7 +8000,7 @@ ircd::db::_seek(database::column &c,
log, "[%s] %lu:%lu SEEK %s in %ld$us '%s'", log, "[%s] %lu:%lu SEEK %s in %ld$us '%s'",
name(d), name(d),
sequence(d), sequence(d),
sequence(opts.snapshot), sequence(ropts.snapshot),
ret.ToString(), ret.ToString(),
timer.at<microseconds>().count(), timer.at<microseconds>().count(),
name(c) name(c)
@ -8095,7 +8095,7 @@ ircd::db::_seek(const vector_view<_read_op> &op,
log, "[%s] %lu:%lu SEEK parallel:%zu in %ld$us", log, "[%s] %lu:%lu SEEK parallel:%zu in %ld$us",
name(d), name(d),
sequence(d), sequence(d),
sequence(opts.snapshot), sequence(ropts.snapshot),
ret.size(), ret.size(),
timer.at<microseconds>().count(), timer.at<microseconds>().count(),
}; };