diff options
Diffstat (limited to 'src/vty')
| -rw-r--r-- | src/vty/logging_vty.c | 4 | 
1 files changed, 4 insertions, 0 deletions
| diff --git a/src/vty/logging_vty.c b/src/vty/logging_vty.c index 6166f1f2..971ec3b6 100644 --- a/src/vty/logging_vty.c +++ b/src/vty/logging_vty.c @@ -535,6 +535,10 @@ static int config_write_log_single(struct vty *vty, struct log_target *tgt)  		break;  	} +	vty_out(vty, "  logging filter all %u%s", +		tgt->filter_map & LOG_FILTER_ALL ? 1 : 0, VTY_NEWLINE); +	/* FIXME: how to do this for filters outside of libosmocore? */ +  	vty_out(vty, "  logging color %u%s", tgt->use_color ? 1 : 0,  		VTY_NEWLINE);  	vty_out(vty, "  logging timestamp %u%s", tgt->print_timestamp ? 1 : 0, | 
