diff options
-rw-r--r-- | src/vty/logging_vty.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/vty/logging_vty.c b/src/vty/logging_vty.c index f3e1419c..9911c6f9 100644 --- a/src/vty/logging_vty.c +++ b/src/vty/logging_vty.c @@ -906,6 +906,8 @@ static int config_write_log_single(struct vty *vty, struct log_target *tgt) vty_out(vty, " logging color %u%s", tgt->use_color ? 1 : 0, VTY_NEWLINE); + vty_out(vty, " logging print category-hex %d%s", + tgt->print_category_hex ? 1 : 0, VTY_NEWLINE); vty_out(vty, " logging print category %d%s", tgt->print_category ? 1 : 0, VTY_NEWLINE); if (tgt->print_ext_timestamp) |