From c9832e3df839d164a801b57cd5f4ee014efe496b Mon Sep 17 00:00:00 2001 From: Paul Vinciguerra Date: Wed, 30 Oct 2019 14:43:08 -0400 Subject: [PATCH] vlib: fix subclass name being truncated in output Type: fix Change-Id: I50816cca4eb88f58209138a348fc5954ab835f5b Signed-off-by: Paul Vinciguerra --- src/vlib/log.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vlib/log.c b/src/vlib/log.c index e3f0cf45a73..b11d0815aef 100644 --- a/src/vlib/log.c +++ b/src/vlib/log.c @@ -265,7 +265,7 @@ show_log (vlib_main_t * vm, while (count--) { e = vec_elt_at_index (lm->entries, i); - vlib_cli_output (vm, "%U %-10U %-10U %v", + vlib_cli_output (vm, "%U %-10U %-14U %v", format_time_float, 0, e->timestamp + time_offset, format_vlib_log_level, e->level, format_vlib_log_class, e->class, e->string); -- 2.16.6