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:
parent
7751f9d0fa
commit
24d7a9220a
1 changed files with 6 additions and 2 deletions
|
@ -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,
|
||||
};
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue