logging: Move extern declaration of osmo_log_target_list from logging.h to logging_internal.h

This list is really not needed by applications and currently only used
internally in logging.c and logging_vty.c.

Change-Id: I5dca069512bfcd0826194427c5482fad8bfd0232
This commit is contained in:
Pau Espin 2019-09-17 18:54:24 +02:00 committed by laforge
parent a609713246
commit 7bfaba51b0
2 changed files with 1 additions and 1 deletions

View File

@ -379,6 +379,5 @@ void log_add_target(struct log_target *target);
void log_del_target(struct log_target *target);
struct log_target *log_target_find(int type, const char *fname);
extern struct llist_head osmo_log_target_list;
/*! @} */

View File

@ -9,6 +9,7 @@
extern void *tall_log_ctx;
extern struct log_info *osmo_log_info;
extern const struct value_string loglevel_strs[];
extern struct llist_head osmo_log_target_list;
void assert_loginfo(const char *src);