From d104a8ea0d9cfb9c181e70016df92332972c85d4 Mon Sep 17 00:00:00 2001 From: Jason Volk Date: Thu, 10 Dec 2020 03:34:35 -0800 Subject: [PATCH] modules/console: Increase column width for event::id hostpart. --- modules/console.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/console.cc b/modules/console.cc index 424c05685..b0745514f 100644 --- a/modules/console.cc +++ b/modules/console.cc @@ -8413,7 +8413,7 @@ console_cmd__event__refs(opt &out, const string_view &line) << " " << std::left << std::setw(45) << trunc(event_id, 45) << " " << std::right << std::setw(12) << trunc(reflect(type), 12) << " -> " << std::right << std::setw(10) << tgt - << " " << std::left << std::setw(45) << trunc(tgt_id? string_view{tgt_id}: ""_sv, 45) + << " " << std::left << std::setw(60) << trunc(tgt_id? string_view{tgt_id}: ""_sv, 60) << std::endl ;