0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-11-29 10:12:39 +01:00

ircd:Ⓜ️:vm: Show write call result to debug log msg.

This commit is contained in:
Jason Volk 2020-12-05 05:13:11 -08:00
parent 7751f9d0fa
commit 24d7a9220a

View file

@ -1151,12 +1151,16 @@ ircd::m::vm::write_append(eval &eval,
}
}
dbs::write(*eval.txn, event, wopts);
const size_t wrote
{
dbs::write(*eval.txn, event, wopts)
};
log::debug
{
log, "%s composed transaction",
log, "%s composed transaction wrote:%zu",
loghead(eval),
wrote,
};
}