From 3528bb41bc459e187834b8590b7b13c9a2753211 Mon Sep 17 00:00:00 2001 From: Jason Volk Date: Thu, 7 Feb 2019 03:59:09 -0800 Subject: [PATCH] modules/console: pretty_oneline() event info references. --- modules/console.cc | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/modules/console.cc b/modules/console.cc index bcdf0fd8a..1e3600454 100644 --- a/modules/console.cc +++ b/modules/console.cc @@ -5536,9 +5536,8 @@ console_cmd__event(opt &out, const string_view &line) out << "+ REFERENCES " << refs.count() << std::endl; refs.for_each([&out](const m::event::idx &idx) { - out << "> " << idx << " " << m::event_id(idx) - << std::endl; - + const m::event::fetch event{idx}; + out << "> " << idx << " " << pretty_oneline(event) << std::endl; return true; }); }