mirror of
https://github.com/matrix-construct/construct
synced 2025-01-13 08:23:56 +01:00
modules/console: Add additional depth column to room roots output.
This commit is contained in:
parent
fea02ba300
commit
aedc4c73b1
1 changed files with 2 additions and 1 deletions
|
@ -6595,7 +6595,8 @@ console_cmd__room__events(opt &out, const string_view &line)
|
|||
for(; it && limit >= 0; order == 'b'? --it : ++it, --limit)
|
||||
if(roots)
|
||||
out << std::setw(48) << std::left << it.state_root()
|
||||
<< " " << std::setw(8) << std::left << it.event_idx()
|
||||
<< " " << std::setw(8) << std::right << it.event_idx()
|
||||
<< " " << std::setw(8) << std::right << it.depth()
|
||||
<< " " << it.event_id()
|
||||
<< std::endl;
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue