vty: Register logp cmd next to logging commands

This way it's easier by osmo_verify_transcript_vty.py to skip and avoid
breaking existent test in osmo-hlr.

Fixes: d0b3b9edac978c91bf84aa2537aa24426685b1fb
Change-Id: Iab9423661e4f4eefca2e3d02b60a43f913ed92a3
diff --git a/src/vty/logging_vty.c b/src/vty/logging_vty.c
index 243d6eb..d639a8f 100644
--- a/src/vty/logging_vty.c
+++ b/src/vty/logging_vty.c
@@ -1061,12 +1061,13 @@
 	install_element_ve(&deprecated_logging_level_everything_cmd);
 	install_element_ve(&deprecated_logging_level_all_cmd);
 	install_element_ve(&deprecated_logging_level_all_everything_cmd);
-	install_element_ve(&show_logging_vty_cmd);
-	install_element_ve(&show_alarms_cmd);
 
 	gen_vty_logp_cmd_strs(&vty_logp_cmd);
 	install_element_ve(&vty_logp_cmd);
 
+	install_element_ve(&show_logging_vty_cmd);
+	install_element_ve(&show_alarms_cmd);
+
 	install_node(&cfg_log_node, config_write_log);
 	install_element(CFG_LOG_NODE, &logging_fltr_all_cmd);
 	install_element(CFG_LOG_NODE, &logging_use_clr_cmd);