0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-10-04 06:38:58 +02:00

modules/console: Add additional depth column to room roots output.

This commit is contained in:
Jason Volk 2018-11-13 18:53:42 -08:00
parent fea02ba300
commit aedc4c73b1

View file

@ -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