0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2025-01-16 01:26:58 +01:00

ircd::db: Additional iterator validity indication in logmsg.

This commit is contained in:
Jason Volk 2020-02-28 17:15:25 -08:00
parent 901890d2af
commit c89ddc4cbf

View file

@ -7815,12 +7815,13 @@ catch(const error &e)
const database &d(*c.d); const database &d(*c.d);
log::critical log::critical
{ {
log, "[%s][%s] %lu:%lu SEEK %s :%s", log, "[%s][%s] %lu:%lu SEEK %s %s :%s",
name(d), name(d),
name(c), name(c),
sequence(d), sequence(d),
sequence(opts.snapshot), sequence(opts.snapshot),
reflect(p), reflect(p),
it.Valid()? "VALID" : "INVALID",
e.what(), e.what(),
}; };