rename log_info to osmo_log_info to avoid namespace clash with app
diff --git a/src/vty/logging_vty.c b/src/vty/logging_vty.c
index a787196..896d79a 100644
--- a/src/vty/logging_vty.c
+++ b/src/vty/logging_vty.c
@@ -33,7 +33,7 @@
 #include <osmocom/vty/telnet_interface.h>
 #include <osmocom/vty/logging.h>
 
-extern const struct log_info *log_info;
+extern const struct log_info *osmo_log_info;
 
 static void _vty_output(struct log_target *tgt, const char *line)
 {
@@ -291,7 +291,7 @@
 		vty_out(vty, "Logging was not enabled.%s", VTY_NEWLINE);
 		return CMD_WARNING;
 	}
-	vty_print_logtarget(vty, log_info, conn->dbg);
+	vty_print_logtarget(vty, osmo_log_info, conn->dbg);
 
 	return CMD_SUCCESS;
 }