libosmocore 1.10.0.57-8972
Osmocom core library
|
libosmocore Logging sub-system More...
Files | |
file | logging.h |
file | logging.c |
Debugging/Logging support code. | |
file | logging_gsmtap.c |
libosmocore log output encapsulated in GSMTAP. | |
file | logging_syslog.c |
Syslog logging support code. | |
file | logging_systemd.c |
Data Structures | |
struct | log_category |
Configuration of single log category / sub-system. More... | |
struct | log_info_cat |
Information regarding one logging category. More... | |
struct | log_context |
Log context information, passed to filter. More... | |
struct | log_info |
Logging configuration, passed to log_init. More... | |
struct | log_target |
structure representing a logging target More... | |
Macros | |
#define | DEBUG |
#define | DEBUGP(ss, fmt, args...) LOGP(ss, LOGL_DEBUG, fmt, ##args) |
Log a debug message through the Osmocom logging framework. More... | |
#define | DEBUGPC(ss, fmt, args...) LOGPC(ss, LOGL_DEBUG, fmt, ##args) |
#define | LOGP(ss, level, fmt, args...) LOGPSRC(ss, level, NULL, 0, fmt, ## args) |
Log a new message through the Osmocom logging framework. More... | |
#define | LOGPC(ss, level, fmt, args...) |
Continue a log message through the Osmocom logging framework. More... | |
#define | LOGPSRC(ss, level, caller_file, caller_line, fmt, args...) LOGPSRCC(ss, level, caller_file, caller_line, 0, fmt, ##args) |
Log through the Osmocom logging framework with explicit source. More... | |
#define | LOGPSRCC(ss, level, caller_file, caller_line, cont, fmt, args...) |
Log through the Osmocom logging framework with explicit source. More... | |
#define | LOGL_DEBUG 1 |
different log levels More... | |
#define | LOGL_INFO 3 |
general information More... | |
#define | LOGL_NOTICE 5 |
abnormal/unexpected condition More... | |
#define | LOGL_ERROR 7 |
error condition, requires user action More... | |
#define | LOGL_FATAL 8 |
fatal, program aborted More... | |
#define | DLGLOBAL -1 |
global logging More... | |
#define | DLLAPD -2 |
LAPD implementation. More... | |
#define | DLINP -3 |
(A-bis) Input sub-system More... | |
#define | DLMUX -4 |
Osmocom Multiplex (Osmux) More... | |
#define | DLMI -5 |
ISDN-layer below input sub-system. More... | |
#define | DLMIB -6 |
ISDN layer B-channel. More... | |
#define | DLSMS -7 |
SMS sub-system. More... | |
#define | DLCTRL -8 |
Control Interface. More... | |
#define | DLGTP -9 |
GTP (GPRS Tunneling Protocol. More... | |
#define | DLSTATS -10 |
Statistics. More... | |
#define | DLGSUP -11 |
Generic Subscriber Update Protocol. More... | |
#define | DLOAP -12 |
Osmocom Authentication Protocol. More... | |
#define | DLSS7 -13 |
Osmocom SS7. More... | |
#define | DLSCCP -14 |
Osmocom SCCP. More... | |
#define | DLSUA -15 |
Osmocom SUA. More... | |
#define | DLM3UA -16 |
Osmocom M3UA. More... | |
#define | DLMGCP -17 |
Osmocom MGCP. More... | |
#define | DLJIBUF -18 |
Osmocom Jitter Buffer. More... | |
#define | DLRSPRO -19 |
Osmocom Remote SIM Protocol. More... | |
#define | DLNS -20 |
Osmocom NS layer. More... | |
#define | DLBSSGP -21 |
Osmocom BSSGP layer. More... | |
#define | DLNSDATA -22 |
Osmocom NS layer data pdus. More... | |
#define | DLNSSIGNAL -23 |
Osmocom NS layer signal pdus. More... | |
#define | DLIUUP -24 |
Osmocom IuUP layer. More... | |
#define | DLPFCP -25 |
Osmocom Packet Forwarding Control Protocol. More... | |
#define | DLCSN1 -26 |
CSN.1 (Concrete Syntax Notation 1) codec. More... | |
#define | DLM2PA -27 |
Osmocom M2PA (libosmo-sigtran) More... | |
#define | DLM2UA -28 |
Reserved for future Osmocom M2UA (libosmo-sigtran) More... | |
#define | DLIO -29 |
Osmocom IO sub-system. More... | |
#define | OSMO_NUM_DLIB 29 |
Number of logging sub-systems in libraries. More... | |
#define | OSMO_LOGCOLOR_NORMAL NULL |
#define | OSMO_LOGCOLOR_RED "\033[1;31m" |
#define | OSMO_LOGCOLOR_GREEN "\033[1;32m" |
#define | OSMO_LOGCOLOR_YELLOW "\033[1;33m" |
#define | OSMO_LOGCOLOR_BLUE "\033[1;34m" |
#define | OSMO_LOGCOLOR_PURPLE "\033[1;35m" |
#define | OSMO_LOGCOLOR_CYAN "\033[1;36m" |
#define | OSMO_LOGCOLOR_DARKRED "\033[31m" |
#define | OSMO_LOGCOLOR_DARKGREEN "\033[32m" |
#define | OSMO_LOGCOLOR_DARKYELLOW "\033[33m" |
#define | OSMO_LOGCOLOR_DARKBLUE "\033[34m" |
#define | OSMO_LOGCOLOR_DARKPURPLE "\033[35m" |
#define | OSMO_LOGCOLOR_DARKCYAN "\033[36m" |
#define | OSMO_LOGCOLOR_DARKGREY "\033[1;30m" |
#define | OSMO_LOGCOLOR_GREY "\033[37m" |
#define | OSMO_LOGCOLOR_BRIGHTWHITE "\033[1;37m" |
#define | OSMO_LOGCOLOR_END "\033[0;m" |
#define | LOG_MAX_CTX _LOG_CTX_COUNT |
Maximum number of logging contexts. More... | |
#define | LOG_MAX_FILTERS _LOG_FLT_COUNT |
Maximum number of logging filters. More... | |
#define | LOG_FILTER_ALL (1<<LOG_FLT_ALL) |
Compatibility with older libosmocore versions. More... | |
#define | GPRS_CTX_NSVC LOG_CTX_GB_NSVC |
Compatibility with older libosmocore versions. More... | |
#define | GPRS_CTX_BVC LOG_CTX_GB_BVC |
Compatibility with older libosmocore versions. More... | |
#define | LOG_MTX_DEBUG 0 |
#define | log_tgt_mutex_lock() log_tgt_mutex_lock_impl() |
#define | log_tgt_mutex_unlock() log_tgt_mutex_unlock_impl() |
#define | TRACE(probe) |
#define | TRACE_ENABLED(probe) (0) |
#define | MAX_LOG_SIZE 4096 |
#define | LOG_WQUEUE_LEN 156 |
#define | INT2IDX(x) (-1*(x)-1) |
#define | GSMTAP_LOG_MAX_SIZE 4096 |
#define | SD_JOURNAL_SUPPRESS_LOCATION |
Typedefs | |
typedef int | log_filter(const struct log_context *ctx, struct log_target *target) |
Log filter function. More... | |
typedef void | log_print_filters(struct vty *vty, const struct log_info *info, const struct log_target *tgt) |
typedef void | log_save_filters(struct vty *vty, const struct log_info *info, const struct log_target *tgt) |
Enumerations | |
enum | log_ctx_index { LOG_CTX_GB_NSVC , LOG_CTX_GB_BVC , LOG_CTX_BSC_SUBSCR , LOG_CTX_VLR_SUBSCR , LOG_CTX_L1_SAPI , LOG_CTX_GB_NSE , _LOG_CTX_COUNT } |
Indexes to indicate the object currently acted upon. More... | |
enum | log_filter_index { LOG_FLT_ALL , LOG_FLT_GB_NSVC , LOG_FLT_GB_BVC , LOG_FLT_BSC_SUBSCR , LOG_FLT_VLR_SUBSCR , LOG_FLT_L1_SAPI , LOG_FLT_GB_NSE , _LOG_FLT_COUNT } |
Indexes to indicate objects that should be logged. More... | |
enum | log_target_type { LOG_TGT_TYPE_VTY , LOG_TGT_TYPE_SYSLOG , LOG_TGT_TYPE_FILE , LOG_TGT_TYPE_STDERR , LOG_TGT_TYPE_STRRB , LOG_TGT_TYPE_GSMTAP , LOG_TGT_TYPE_SYSTEMD } |
Type of logging target. More... | |
enum | log_filename_type { LOG_FILENAME_NONE , LOG_FILENAME_PATH , LOG_FILENAME_BASENAME } |
Whether/how to log the source filename (and line number). More... | |
enum | log_filename_pos { LOG_FILENAME_POS_HEADER_END , LOG_FILENAME_POS_LINE_END } |
Where on a log line source file and line should be logged. More... | |
Functions | |
void | osmo_vlogp (int subsys, int level, const char *file, int line, int cont, const char *format, va_list ap) |
vararg version of logging function More... | |
void | logp (int subsys, const char *file, int line, int cont, const char *format,...) |
logging function used by DEBUGP() macro More... | |
void | logp2 (int subsys, unsigned int level, const char *file, int line, int cont, const char *format,...) |
logging function used by LOGP() macro More... | |
void void | logp_stub (const char *file, int line, int cont, const char *format,...) |
int | log_init (const struct log_info *inf, void *ctx) |
Initialize the Osmocom logging core. More... | |
void | log_fini (void) |
int | log_check_level (int subsys, unsigned int level) |
Check whether a log entry will be generated. More... | |
void | log_reset_context (void) |
Reset (clear) the logging context. More... | |
int | log_set_context (uint8_t ctx_nr, void *value) |
Set the logging context. More... | |
void | log_set_all_filter (struct log_target *target, int all) |
Enable the LOG_FLT_ALL log filter. More... | |
int | log_cache_enable (void) |
Enable the log level lookup cache to bypass string formatting and other code for log statements which are not actually enabled/needed by any existing log target. More... | |
void | log_cache_update (int mapped_subsys, uint8_t enabled, uint8_t level) |
Updates single cache entry, caller must hold osmo_log_tgt_mutex. More... | |
void | log_set_use_color (struct log_target *target, int use_color) |
Enable or disable the use of colored output. More... | |
void | log_set_print_extended_timestamp (struct log_target *target, int print_timestamp) |
Enable or disable printing of extended timestamps while logging. More... | |
void | log_set_print_timestamp (struct log_target *target, int print_timestamp) |
Enable or disable printing of timestamps while logging. More... | |
void | log_set_print_tid (struct log_target *target, int print_tid) |
Enable or disable printing of timestamps while logging. More... | |
void | log_set_print_filename (struct log_target *target, int print_filename) |
Use log_set_print_filename2() instead. More... | |
void | log_set_print_filename2 (struct log_target *target, enum log_filename_type lft) |
Enable or disable printing of the filename while logging. More... | |
void | log_set_print_filename_pos (struct log_target *target, enum log_filename_pos pos) |
Set the position where on a log line the source file info should be logged. More... | |
void | log_set_print_category (struct log_target *target, int print_category) |
Enable or disable printing of the category name. More... | |
void | log_set_print_category_hex (struct log_target *target, int print_category_hex) |
Enable or disable printing of the category number in hex ('<000b>'). More... | |
void | log_set_print_level (struct log_target *target, int print_level) |
Enable or disable printing of the log level name. More... | |
void | log_set_log_level (struct log_target *target, int log_level) |
Set the global log level for a given log target. More... | |
void | log_parse_category_mask (struct log_target *target, const char *_mask) |
parse the log category mask More... | |
const char * | log_category_name (int subsys) |
int | log_parse_level (const char *lvl) |
Parse a human-readable log level into a numeric value. More... | |
const char * | log_level_str (unsigned int lvl) |
convert a numeric log level into human-readable string More... | |
int | log_parse_category (const char *category) |
parse a human-readable log category into numeric form More... | |
void | log_set_category_filter (struct log_target *target, int category, int enable, int level) |
Set a category filter on a given log target. More... | |
struct log_target * | log_target_create (void) |
Create a new log target skeleton. More... | |
void | log_target_destroy (struct log_target *target) |
Unregister, close and delete a log target. More... | |
struct log_target * | log_target_create_stderr (void) |
Create the STDERR log target. More... | |
struct log_target * | log_target_create_file (const char *fname) |
Create a new file-based log target using non-blocking write_queue. More... | |
struct log_target * | log_target_create_syslog (const char *ident, int option, int facility) |
struct log_target * | log_target_create_gsmtap (const char *host, uint16_t port, const char *ident, bool ofd_wq_mode, bool add_sink) |
Create a new logging target for GSMTAP logging. More... | |
struct log_target * | log_target_create_systemd (bool raw) |
Create a new logging target for systemd journal logging. More... | |
void | log_target_systemd_set_raw (struct log_target *target, bool raw) |
Change meta information handling of an existing logging target. More... | |
int | log_target_file_reopen (struct log_target *target) |
close and re-open a log file (for log file rotation) More... | |
int | log_target_file_switch_to_stream (struct log_target *target) |
switch from non-blocking/write-queue to blocking + buffered stream output More... | |
int | log_target_file_switch_to_wqueue (struct log_target *target) |
switch from blocking + buffered file output to non-blocking write-queue based output. More... | |
int | log_targets_reopen (void) |
close and re-open all log files (for log file rotation) More... | |
void | log_add_target (struct log_target *target) |
Register a new log target with the logging core. More... | |
void | log_del_target (struct log_target *target) |
Unregister a log target from the logging core. More... | |
struct log_target * | log_target_find (enum log_target_type type, const char *fname) |
Find a registered log target. More... | |
void | log_enable_multithread (void) |
Enable multithread support (mutex) in libosmocore logging system. More... | |
void | log_tgt_mutex_lock_impl (void) |
Acquire the osmo_log_tgt_mutex. More... | |
void | log_tgt_mutex_unlock_impl (void) |
Release the osmo_log_tgt_mutex. More... | |
osmo_static_assert (_LOG_CTX_COUNT<=ARRAY_SIZE(((struct log_context *) NULL) ->ctx), enum_logging_ctx_items_fit_in_struct_log_context) | |
osmo_static_assert (_LOG_FLT_COUNT<=ARRAY_SIZE(((struct log_target *) NULL) ->filter_data), enum_logging_filters_fit_in_log_target_filter_data) | |
osmo_static_assert (_LOG_FLT_COUNT<=8 *sizeof(((struct log_target *) NULL) ->filter_map), enum_logging_filters_fit_in_log_target_filter_map) | |
LLIST_HEAD (osmo_log_target_list) | |
static void | log_cache_update_all (void) |
Updates cache for all targets for all categies, caller must hold osmo_log_tgt_mutex. More... | |
static bool | log_cache_check (int mapped_subsys, int level) |
Queries log level cache. More... | |
void | assert_loginfo (const char *src) |
static int | subsys_lib2index (int subsys) |
static const char * | color (int subsys) |
static const char * | level_color (int level) |
static const char * | const_basename (const char *path) |
static int | _output_buf (char *buf, int buf_len, struct log_target *target, unsigned int subsys, unsigned int level, const char *file, int line, int cont, const char *format, va_list ap) |
main output formatting function for log lines. More... | |
static void | _output (struct log_target *target, unsigned int subsys, unsigned int level, const char *file, int line, int cont, const char *format, va_list ap) |
static int | map_subsys (int subsys) |
static bool | should_log_to_target (struct log_target *tar, int subsys, int level) |
static int | _file_wq_write_cb (struct osmo_fd *ofd, struct msgb *msg) |
static void | _file_output_stream (struct log_target *target, unsigned int level, const char *log) |
static void | _file_raw_output (struct log_target *target, int subsys, unsigned int level, const char *file, int line, int cont, const char *format, va_list ap) |
struct log_target * | log_target_create_file_stream (const char *fname) |
Create a new file-based log target using buffered, blocking stream output. More... | |
static void | _gsmtap_raw_output (struct log_target *target, int subsys, unsigned int level, const char *file, int line, int cont, const char *format, va_list ap) |
static int | logp2syslog_level (unsigned int level) |
static void | _systemd_output (struct log_target *target, unsigned int level, const char *log) |
static void | _systemd_raw_output (struct log_target *target, int subsys, unsigned int level, const char *file, int line, int cont, const char *format, va_list ap) |
Variables | |
struct log_info * | osmo_log_info |
struct log_info * | osmo_log_info |
static struct log_context | log_context |
void * | tall_log_ctx = NULL |
static __thread long int | logging_tid |
static volatile uint8_t * | log_level_lookup_cache |
One global copy that contains the union of log levels for all targets for all categories, used for quick lock free checks of log targets. More... | |
static pthread_mutex_t | osmo_log_tgt_mutex |
This mutex must be held while using osmo_log_target_list or any of its log_targets in a multithread program. More... | |
static bool | osmo_log_tgt_mutex_on = false |
const struct value_string | loglevel_strs [] |
static const struct log_info_cat | internal_cat [OSMO_NUM_DLIB] |
static const struct value_string | level_colors [] |
static __thread uint32_t | logging_gsmtap_tid |
libosmocore Logging sub-system
#define DEBUG |
#define DEBUGP | ( | ss, | |
fmt, | |||
args... | |||
) | LOGP(ss, LOGL_DEBUG, fmt, ##args) |
Log a debug message through the Osmocom logging framework.
[in] | ss | logging subsystem (e.g. DLGLOBAL) |
[in] | fmt | format string |
[in] | args | variable argument list |
#define DEBUGPC | ( | ss, | |
fmt, | |||
args... | |||
) | LOGPC(ss, LOGL_DEBUG, fmt, ##args) |
#define DLBSSGP -21 |
Osmocom BSSGP layer.
#define DLCSN1 -26 |
CSN.1 (Concrete Syntax Notation 1) codec.
#define DLCTRL -8 |
Control Interface.
#define DLGLOBAL -1 |
global logging
#define DLGSUP -11 |
Generic Subscriber Update Protocol.
#define DLGTP -9 |
GTP (GPRS Tunneling Protocol.
#define DLINP -3 |
(A-bis) Input sub-system
#define DLIO -29 |
Osmocom IO sub-system.
#define DLIUUP -24 |
Osmocom IuUP layer.
#define DLJIBUF -18 |
Osmocom Jitter Buffer.
#define DLLAPD -2 |
LAPD implementation.
#define DLM2PA -27 |
Osmocom M2PA (libosmo-sigtran)
#define DLM2UA -28 |
Reserved for future Osmocom M2UA (libosmo-sigtran)
#define DLM3UA -16 |
Osmocom M3UA.
#define DLMGCP -17 |
Osmocom MGCP.
#define DLMI -5 |
ISDN-layer below input sub-system.
#define DLMIB -6 |
ISDN layer B-channel.
#define DLMUX -4 |
Osmocom Multiplex (Osmux)
#define DLNS -20 |
Osmocom NS layer.
#define DLNSDATA -22 |
Osmocom NS layer data pdus.
#define DLNSSIGNAL -23 |
Osmocom NS layer signal pdus.
#define DLOAP -12 |
Osmocom Authentication Protocol.
#define DLPFCP -25 |
Osmocom Packet Forwarding Control Protocol.
#define DLRSPRO -19 |
Osmocom Remote SIM Protocol.
#define DLSCCP -14 |
Osmocom SCCP.
#define DLSMS -7 |
SMS sub-system.
#define DLSS7 -13 |
Osmocom SS7.
#define DLSTATS -10 |
Statistics.
#define DLSUA -15 |
Osmocom SUA.
#define GPRS_CTX_BVC LOG_CTX_GB_BVC |
Compatibility with older libosmocore versions.
#define GPRS_CTX_NSVC LOG_CTX_GB_NSVC |
Compatibility with older libosmocore versions.
#define GSMTAP_LOG_MAX_SIZE 4096 |
#define LOG_FILTER_ALL (1<<LOG_FLT_ALL) |
Compatibility with older libosmocore versions.
#define LOG_MAX_CTX _LOG_CTX_COUNT |
Maximum number of logging contexts.
#define LOG_MAX_FILTERS _LOG_FLT_COUNT |
Maximum number of logging filters.
#define LOG_MTX_DEBUG 0 |
#define log_tgt_mutex_lock | ( | ) | log_tgt_mutex_lock_impl() |
#define log_tgt_mutex_unlock | ( | ) | log_tgt_mutex_unlock_impl() |
#define LOG_WQUEUE_LEN 156 |
#define LOGL_DEBUG 1 |
different log levels
debugging information
#define LOGL_ERROR 7 |
error condition, requires user action
#define LOGL_FATAL 8 |
fatal, program aborted
#define LOGL_INFO 3 |
general information
#define LOGL_NOTICE 5 |
abnormal/unexpected condition
Log a new message through the Osmocom logging framework.
[in] | ss | logging subsystem (e.g. DLGLOBAL) |
[in] | level | logging level (e.g. LOGL_NOTICE) |
[in] | fmt | format string |
[in] | args | variable argument list |
#define LOGPC | ( | ss, | |
level, | |||
fmt, | |||
args... | |||
) |
Continue a log message through the Osmocom logging framework.
[in] | ss | logging subsystem (e.g. DLGLOBAL) |
[in] | level | logging level (e.g. LOGL_NOTICE) |
[in] | fmt | format string |
[in] | args | variable argument list |
#define LOGPSRC | ( | ss, | |
level, | |||
caller_file, | |||
caller_line, | |||
fmt, | |||
args... | |||
) | LOGPSRCC(ss, level, caller_file, caller_line, 0, fmt, ##args) |
Log through the Osmocom logging framework with explicit source.
If caller_file is passed as NULL, FILE and LINE are used instead of caller_file and caller_line (so that this macro here defines both cases in the same place, and to catch cases where callers fail to pass a non-null filename string).
[in] | ss | logging subsystem (e.g. DLGLOBAL) |
[in] | level | logging level (e.g. LOGL_NOTICE) |
[in] | caller_file | caller's source file string (e.g. FILE) |
[in] | caller_line | caller's source line nr (e.g. LINE) |
[in] | fmt | format string |
[in] | args | variable argument list |
#define LOGPSRCC | ( | ss, | |
level, | |||
caller_file, | |||
caller_line, | |||
cont, | |||
fmt, | |||
args... | |||
) |
Log through the Osmocom logging framework with explicit source.
If caller_file is passed as NULL, FILE and LINE are used instead of caller_file and caller_line (so that this macro here defines both cases in the same place, and to catch cases where callers fail to pass a non-null filename string).
[in] | ss | logging subsystem (e.g. DLGLOBAL) |
[in] | level | logging level (e.g. LOGL_NOTICE) |
[in] | caller_file | caller's source file string (e.g. FILE) |
[in] | caller_line | caller's source line nr (e.g. LINE) |
[in] | cont | continuation (1) or new line (0) |
[in] | fmt | format string |
[in] | args | variable argument list |
#define MAX_LOG_SIZE 4096 |
#define OSMO_LOGCOLOR_BLUE "\033[1;34m" |
#define OSMO_LOGCOLOR_BRIGHTWHITE "\033[1;37m" |
#define OSMO_LOGCOLOR_CYAN "\033[1;36m" |
#define OSMO_LOGCOLOR_DARKBLUE "\033[34m" |
#define OSMO_LOGCOLOR_DARKCYAN "\033[36m" |
#define OSMO_LOGCOLOR_DARKGREEN "\033[32m" |
#define OSMO_LOGCOLOR_DARKGREY "\033[1;30m" |
#define OSMO_LOGCOLOR_DARKPURPLE "\033[35m" |
#define OSMO_LOGCOLOR_DARKRED "\033[31m" |
#define OSMO_LOGCOLOR_DARKYELLOW "\033[33m" |
#define OSMO_LOGCOLOR_END "\033[0;m" |
#define OSMO_LOGCOLOR_GREEN "\033[1;32m" |
#define OSMO_LOGCOLOR_GREY "\033[37m" |
#define OSMO_LOGCOLOR_NORMAL NULL |
#define OSMO_LOGCOLOR_PURPLE "\033[1;35m" |
#define OSMO_LOGCOLOR_RED "\033[1;31m" |
#define OSMO_LOGCOLOR_YELLOW "\033[1;33m" |
#define OSMO_NUM_DLIB 29 |
Number of logging sub-systems in libraries.
#define SD_JOURNAL_SUPPRESS_LOCATION |
#define TRACE | ( | probe | ) |
#define TRACE_ENABLED | ( | probe | ) | (0) |
typedef int log_filter(const struct log_context *ctx, struct log_target *target) |
Log filter function.
typedef void log_print_filters(struct vty *vty, const struct log_info *info, const struct log_target *tgt) |
typedef void log_save_filters(struct vty *vty, const struct log_info *info, const struct log_target *tgt) |
enum log_ctx_index |
Indexes to indicate the object currently acted upon.
Array indexes for the global log_context array.
Enumerator | |
---|---|
LOG_CTX_GB_NSVC | |
LOG_CTX_GB_BVC | |
LOG_CTX_BSC_SUBSCR | |
LOG_CTX_VLR_SUBSCR | |
LOG_CTX_L1_SAPI | |
LOG_CTX_GB_NSE | |
_LOG_CTX_COUNT |
enum log_filename_pos |
enum log_filename_type |
enum log_filter_index |
enum log_target_type |
Type of logging target.
|
static |
References OSMO_ASSERT, log_target::out, and log_target::tgt_file.
Referenced by log_target_create_file_stream(), log_target_create_stderr(), and log_target_file_switch_to_stream().
|
static |
References _file_wq_write_cb(), _output_buf(), osmo_wqueue::bfd, osmo_wqueue::current_length, file(), level, MAX_LOG_SIZE, msg, msgb_alloc_c(), msgb_data(), msgb_free(), msgb_put(), msgb_tailroom(), OSMO_ASSERT, osmo_wqueue_enqueue_quiet(), subsys, log_target::tgt_file, and log_target::wqueue.
Referenced by log_target_create_file(), and log_target_file_switch_to_wqueue().
References osmo_fd::fd, msg, msgb_data(), msgb_length(), and msgb_pull().
Referenced by _file_raw_output(), log_target_create_file(), and log_target_file_switch_to_wqueue().
|
static |
References file(), log_target::gsmtap_inst, GSMTAP_LOG_MAX_SIZE, gsmtap_sendmsg(), GSMTAP_TYPE_OSMOCORE_LOG, GSMTAP_VERSION, gsmtap_hdr::hdr_len, log_target::ident, level, gsmtap_osmocore_log_hdr::level, gsmtap_osmocore_log_hdr::line_nr, log_category_name(), logging_gsmtap_tid, log_target::loglevel, msg, msgb_alloc(), msgb_free(), msgb_put(), msgb_tailroom(), gsmtap_osmocore_log_hdr::name, osmo_gettid(), osmo_gettimeofday(), osmo_htonl, osmo_store32be(), OSMO_STRLCPY_ARRAY, gsmtap_osmocore_log_hdr::pid, gsmtap_osmocore_log_hdr::proc_name, gsmtap_osmocore_log_hdr::sec, gsmtap_osmocore_log_hdr::src_file, subsys, gsmtap_osmocore_log_hdr::subsys, log_target::tgt_gsmtap, gsmtap_osmocore_log_hdr::ts, gsmtap_hdr::type, gsmtap_osmocore_log_hdr::usec, and gsmtap_hdr::version.
Referenced by log_target_create_gsmtap().
|
static |
References _output_buf(), file(), level, MAX_LOG_SIZE, log_target::output, and subsys.
Referenced by osmo_vlogp().
|
static |
main output formatting function for log lines.
[out] | buf | caller-allocated output buffer for the generated string |
[in] | buf_len | number of bytes available in buf |
[in] | target | log target for which the string is to be formatted |
[in] | subsys | Log sub-system number |
[in] | level | Log level |
[in] | file | name of source code file generating the log |
[in] | line | line source code line number within 'file' generating the log |
[in] | cont | is this a continuation (true) or not (false) |
[in] | format | format string |
[in] | ap | variable argument list for format |
References osmo_strbuf::buf, color(), const_basename(), file(), level, level_color(), log_category_name(), LOG_FILENAME_BASENAME, LOG_FILENAME_NONE, LOG_FILENAME_PATH, LOG_FILENAME_POS_HEADER_END, LOG_FILENAME_POS_LINE_END, log_level_str(), logging_tid, osmo_gettid(), osmo_gettimeofday(), OSMO_LOGCOLOR_END, OSMO_STRBUF_ADDED_TAIL, OSMO_STRBUF_APPEND, OSMO_STRBUF_CHAR_COUNT, OSMO_STRBUF_DROP_TAIL, OSMO_STRBUF_PRINTF, OSMO_STRBUF_REMAIN, osmo_strbuf::pos, log_target::print_category, log_target::print_category_hex, log_target::print_ext_timestamp, log_target::print_filename2, log_target::print_filename_pos, log_target::print_level, log_target::print_tid, log_target::print_timestamp, subsys, time, and log_target::use_color.
Referenced by _file_raw_output(), and _output().
|
static |
References level, and logp2syslog_level().
Referenced by log_target_systemd_set_raw().
|
static |
References file(), level, log_category_name(), logp2syslog_level(), and subsys.
Referenced by log_target_systemd_set_raw().
void assert_loginfo | ( | const char * | src | ) |
References OSMO_ASSERT, and osmo_log_info.
Referenced by log_check_level(), log_parse_category(), log_parse_category_mask(), and log_target_create().
|
static |
References log_info::cat, log_info_cat::color, osmo_log_info, and subsys.
Referenced by _output_buf(), rb_erase(), and rb_set_color().
|
static |
Referenced by _output_buf().
|
static |
References c, get_value_string(), get_value_string_or_null(), level, level_colors, and LOGL_FATAL.
Referenced by _output_buf().
LLIST_HEAD | ( | osmo_log_target_list | ) |
void log_add_target | ( | struct log_target * | target | ) |
Register a new log target with the logging core.
[in] | target | Log target to be registered |
References log_target::entry, llist_add_tail(), log_cache_update_all(), and osmo_log_target_list.
Referenced by osmo_init_logging2().
|
static |
Queries log level cache.
[in] | mapped_subsys | plain category index (after mapping) |
[in] | level | log level |
References level, and log_level_lookup_cache.
Referenced by log_check_level(), and osmo_vlogp().
int log_cache_enable | ( | void | ) |
Enable the log level lookup cache to bypass string formatting and other code for log statements which are not actually enabled/needed by any existing log target.
\retruns 0 in case of success, negative -errno in case of error.
References ENOTSUP, log_cache_update_all(), log_level_lookup_cache, log_tgt_mutex_lock, log_tgt_mutex_unlock, log_info::num_cat, and osmo_log_info.
void log_cache_update | ( | int | mapped_subsys, |
uint8_t | enabled, | ||
uint8_t | level | ||
) |
Updates single cache entry, caller must hold osmo_log_tgt_mutex.
[in] | mapped_subsys | plain category index (after mapping) |
[in] | enabled | log category enabled? |
[in] | level | log level |
References log_target::categories, log_category::enabled, level, llist_for_each_entry, log_level_lookup_cache, log_category::loglevel, log_target::loglevel, osmo_log_target_list, OSMO_MAX, and OSMO_MIN.
Referenced by log_set_category_filter(), and log_target_create().
|
static |
Updates cache for all targets for all categies, caller must hold osmo_log_tgt_mutex.
References log_target::categories, log_category::enabled, log_target::entry, llist_for_each_entry, log_level_lookup_cache, log_category::loglevel, log_target::loglevel, log_info::num_cat, osmo_log_info, osmo_log_target_list, OSMO_MAX, and OSMO_MIN.
Referenced by log_add_target(), log_cache_enable(), log_del_target(), log_parse_category_mask(), and log_set_log_level().
const char * log_category_name | ( | int | subsys | ) |
References log_info::cat, log_info_cat::name, osmo_log_info, and subsys.
Referenced by _gsmtap_raw_output(), _output_buf(), and _systemd_raw_output().
int log_check_level | ( | int | subsys, |
unsigned int | level | ||
) |
Check whether a log entry will be generated.
References assert_loginfo(), log_target::entry, level, llist_for_each_entry, log_cache_check(), log_tgt_mutex_lock, log_tgt_mutex_unlock, map_subsys(), osmo_log_target_list, should_log_to_target(), and subsys.
void log_del_target | ( | struct log_target * | target | ) |
Unregister a log target from the logging core.
[in] | target | Log target to be unregistered |
References log_target::entry, llist_del(), and log_cache_update_all().
Referenced by log_target_destroy().
void log_enable_multithread | ( | void | ) |
Enable multithread support (mutex) in libosmocore logging system.
Must be called by processes willing to use logging subsystem from several threads. Once enabled, it's not possible to disable it again.
References osmo_log_tgt_mutex, and osmo_log_tgt_mutex_on.
void log_fini | ( | void | ) |
int log_init | ( | const struct log_info * | inf, |
void * | ctx | ||
) |
Initialize the Osmocom logging core.
[in] | inf | Information regarding logging categories, could be NULL |
[in] | ctx | talloc context for logging allocations |
If inf is NULL then only library-internal categories are initialized.
References ARRAY_SIZE, log_info::cat, log_info::filter_fn, internal_cat, LOGL_NOTICE, log_info_cat::loglevel, log_info::num_cat, log_info::num_cat_user, OSMO_ASSERT, osmo_log_info, and tall_log_ctx.
Referenced by osmo_init_logging2().
const char * log_level_str | ( | unsigned int | lvl | ) |
convert a numeric log level into human-readable string
[in] | lvl | numeric log level |
References get_value_string(), and loglevel_strs.
Referenced by _output_buf().
int log_parse_category | ( | const char * | category | ) |
parse a human-readable log category into numeric form
[in] | category | human-readable log category name |
References assert_loginfo(), log_info::cat, log_info_cat::name, log_info::num_cat, and osmo_log_info.
void log_parse_category_mask | ( | struct log_target * | target, |
const char * | _mask | ||
) |
parse the log category mask
[in] | target | log target to be configured |
[in] | _mask | log category mask string |
The format can be this: category1:category2:category3 or category1,2:category2,3:...
References assert_loginfo(), log_info::cat, log_target::categories, log_category::enabled, length, level, log_cache_update_all(), log_category::loglevel, log_info_cat::name, log_info::num_cat, OSMO_ASSERT, and osmo_log_info.
int log_parse_level | ( | const char * | lvl | ) |
Parse a human-readable log level into a numeric value.
[in] | lvl | zero-terminated string containing log level name |
References get_string_value(), and loglevel_strs.
void log_reset_context | ( | void | ) |
Reset (clear) the logging context.
void log_set_all_filter | ( | struct log_target * | target, |
int | all | ||
) |
Enable the LOG_FLT_ALL log filter.
[in] | target | Log target to be affected |
[in] | all | enable (1) or disable (0) the ALL filter |
When the LOG_FLT_ALL filter is enabled, all log messages will be printed. It acts as a wildcard. Setting it to 1 means there is no filtering.
References log_target::filter_map, and LOG_FLT_ALL.
Referenced by osmo_init_logging2().
void log_set_category_filter | ( | struct log_target * | target, |
int | category, | ||
int | enable, | ||
int | level | ||
) |
Set a category filter on a given log target.
[in] | target | Log target to be affected |
[in] | category | Log category to be affected |
[in] | enable | whether to enable or disable the filter |
[in] | level | Log level of the filter |
References log_target::categories, log_category::enabled, level, log_cache_update(), log_category::loglevel, and map_subsys().
int log_set_context | ( | uint8_t | ctx_nr, |
void * | value | ||
) |
Set the logging context.
[in] | ctx_nr | logging context number |
[in] | value | value to which the context is to be set |
A logging context is something like the subscriber identity to which the currently processed message relates, or the BTS through which it was received. As soon as this data is known, it can be set using this function. The main use of context information is for logging filters.
References log_context::ctx, and LOG_MAX_CTX.
void log_set_log_level | ( | struct log_target * | target, |
int | log_level | ||
) |
Set the global log level for a given log target.
[in] | target | Log target to be affected |
[in] | log_level | New global log level |
References log_cache_update_all(), and log_target::loglevel.
void log_set_print_category | ( | struct log_target * | target, |
int | print_category | ||
) |
Enable or disable printing of the category name.
[in] | target | Log target to be affected |
[in] | print_category | Enable (1) or disable (0) filenames |
Print the category/subsys name in front of every log message.
References log_target::print_category.
void log_set_print_category_hex | ( | struct log_target * | target, |
int | print_category_hex | ||
) |
Enable or disable printing of the category number in hex ('<000b>').
[in] | target | Log target to be affected. |
[in] | print_category_hex | Enable (1) or disable (0) hex category. |
References log_target::print_category_hex.
Referenced by log_set_print_filename().
void log_set_print_extended_timestamp | ( | struct log_target * | target, |
int | print_timestamp | ||
) |
Enable or disable printing of extended timestamps while logging.
[in] | target | Log target to be affected |
[in] | print_timestamp | Enable (1) or disable (0) timestamps |
When both timestamp and extended timestamp is enabled then only the extended timestamp will be used. The format of the timestamp is YYYYMMDDhhmmssnnn.
References log_target::print_ext_timestamp, and log_target::print_timestamp.
void log_set_print_filename | ( | struct log_target * | target, |
int | print_filename | ||
) |
Use log_set_print_filename2() instead.
Call log_set_print_filename2() with LOG_FILENAME_PATH or LOG_FILENAME_NONE, as well as call log_set_print_category_hex() with the argument passed to this function. This is to mirror legacy behavior, which combined the category in hex with the filename. For example, if the category-hex output were no longer affected by log_set_print_filename(), many unit tests (in libosmocore as well as dependent projects) would fail since they expect the category to disappear along with the filename.
[in] | target | Log target to be affected |
[in] | print_filename | Enable (1) or disable (0) filenames |
References LOG_FILENAME_NONE, LOG_FILENAME_PATH, log_set_print_category_hex(), log_set_print_filename2(), and log_target::print_filename.
void log_set_print_filename2 | ( | struct log_target * | target, |
enum log_filename_type | lft | ||
) |
Enable or disable printing of the filename while logging.
[in] | target | Log target to be affected. |
[in] | lft | An LOG_FILENAME_* enum value. LOG_FILENAME_NONE omits the source file and line information from logs. LOG_FILENAME_PATH prints the entire source file path as passed to LOGP macros. |
References log_target::print_filename2.
Referenced by log_set_print_filename().
void log_set_print_filename_pos | ( | struct log_target * | target, |
enum log_filename_pos | pos | ||
) |
Set the position where on a log line the source file info should be logged.
[in] | target | Log target to be affected. |
[in] | pos | A LOG_FILENAME_POS_* enum value. LOG_FILENAME_POS_DEFAULT logs just before the caller supplied log message. LOG_FILENAME_POS_LAST logs only at the end of a log line, where the caller issued an ' ' to end the |
References log_target::print_filename_pos.
void log_set_print_level | ( | struct log_target * | target, |
int | print_level | ||
) |
Enable or disable printing of the log level name.
[in] | target | Log target to be affected |
[in] | print_level | Enable (1) or disable (0) log level name |
Print the log level name in front of every log message.
References log_target::print_level.
void log_set_print_tid | ( | struct log_target * | target, |
int | print_tid | ||
) |
Enable or disable printing of timestamps while logging.
[in] | target | Log target to be affected |
[in] | print_tid | Enable (1) or disable (0) Thread ID logging |
References log_target::print_tid.
void log_set_print_timestamp | ( | struct log_target * | target, |
int | print_timestamp | ||
) |
Enable or disable printing of timestamps while logging.
[in] | target | Log target to be affected |
[in] | print_timestamp | Enable (1) or disable (0) timestamps |
References log_target::print_timestamp.
void log_set_use_color | ( | struct log_target * | target, |
int | use_color | ||
) |
Enable or disable the use of colored output.
[in] | target | Log target to be affected |
[in] | use_color | Use color (1) or don't use color (0) |
References log_target::use_color.
struct log_target * log_target_create | ( | void | ) |
Create a new log target skeleton.
References assert_loginfo(), c, log_info::cat, log_target::categories, log_category::enabled, log_info_cat::enabled, log_target::entry, INIT_LLIST_HEAD, log_cache_update(), LOG_FILENAME_PATH, log_category::loglevel, log_info_cat::loglevel, log_target::loglevel, log_info::num_cat, osmo_log_info, log_target::print_category_hex, log_target::print_filename2, log_target::print_tid, log_target::print_timestamp, tall_log_ctx, and log_target::use_color.
Referenced by log_target_create_file(), log_target_create_file_stream(), log_target_create_gsmtap(), log_target_create_rb(), log_target_create_stderr(), and log_target_create_systemd().
struct log_target * log_target_create_file | ( | const char * | fname | ) |
Create a new file-based log target using non-blocking write_queue.
[in] | fname | File name of the new log file |
References _file_raw_output(), _file_wq_write_cb(), osmo_wqueue::bfd, osmo_fd::fd, log_target::fname, log_target_create(), log_target_destroy(), LOG_TGT_TYPE_FILE, LOG_WQUEUE_LEN, MAX_LOG_SIZE, osmo_fd_register(), OSMO_FD_WRITE, osmo_wqueue_init(), log_target::raw_output, log_target::tgt_file, log_target::type, osmo_fd::when, log_target::wqueue, and osmo_wqueue::write_cb.
struct log_target * log_target_create_file_stream | ( | const char * | fname | ) |
Create a new file-based log target using buffered, blocking stream output.
[in] | fname | File name of the new log file |
References _file_output_stream(), log_target::fname, log_target_create(), log_target_destroy(), LOG_TGT_TYPE_FILE, log_target::out, log_target::output, log_target::tgt_file, and log_target::type.
struct log_target * log_target_create_gsmtap | ( | const char * | host, |
uint16_t | port, | ||
const char * | ident, | ||
bool | ofd_wq_mode, | ||
bool | add_sink | ||
) |
Create a new logging target for GSMTAP logging.
[in] | host | remote host to send the logs to |
[in] | port | remote port to send the logs to |
[in] | ident | string identifier |
[in] | ofd_wq_mode | register osmo_wqueue (1) or not (0) |
[in] | add_sink | add GSMTAP sink or not |
References _gsmtap_raw_output(), log_target::gsmtap_inst, gsmtap_source_add_sink(), gsmtap_source_init(), log_target::hostname, log_target::ident, log_target_create(), log_target_destroy(), LOG_TGT_TYPE_GSMTAP, log_target::raw_output, log_target::tgt_gsmtap, and log_target::type.
struct log_target * log_target_create_stderr | ( | void | ) |
Create the STDERR log target.
References _file_output_stream(), log_target_create(), LOG_TGT_TYPE_STDERR, log_target::out, log_target::output, log_target::tgt_file, and log_target::type.
Referenced by osmo_init_logging2().
struct log_target * log_target_create_syslog | ( | const char * | ident, |
int | option, | ||
int | facility | ||
) |
struct log_target * log_target_create_systemd | ( | bool | raw | ) |
Create a new logging target for systemd journal logging.
[in] | raw | whether to offload rendering of the meta information (location, category) to systemd-journal. |
References log_target_create(), log_target_systemd_set_raw(), LOG_TGT_TYPE_SYSTEMD, log_target::raw, and log_target::type.
void log_target_destroy | ( | struct log_target * | target | ) |
Unregister, close and delete a log target.
[in] | target | log target to unregister, close and delete |
References osmo_wqueue::bfd, osmo_fd::fd, log_target::fname, log_target::gsmtap_inst, gsmtap_source_free(), log_del_target(), LOG_TGT_TYPE_FILE, LOG_TGT_TYPE_GSMTAP, LOG_TGT_TYPE_STDERR, LOG_TGT_TYPE_SYSLOG, osmo_fd_unregister(), osmo_wqueue_clear(), log_target::out, log_target::tgt_file, log_target::tgt_gsmtap, log_target::type, and log_target::wqueue.
Referenced by log_fini(), log_target_create_file(), log_target_create_file_stream(), log_target_create_gsmtap(), and log_target_create_rb().
int log_target_file_reopen | ( | struct log_target * | target | ) |
close and re-open a log file (for log file rotation)
[in] | target | log target to re-open |
References osmo_wqueue::bfd, osmo_fd::fd, log_target::fname, LOG_TGT_TYPE_FILE, LOG_TGT_TYPE_STDERR, OSMO_ASSERT, osmo_fd_register(), osmo_fd_unregister(), log_target::out, log_target::tgt_file, log_target::type, and log_target::wqueue.
Referenced by log_targets_reopen().
int log_target_file_switch_to_stream | ( | struct log_target * | target | ) |
switch from non-blocking/write-queue to blocking + buffered stream output
[in] | target | log target which we should switch |
References _file_output_stream(), osmo_wqueue::bfd, osmo_fd::fd, log_target::fname, llist_empty(), LOG_TGT_TYPE_FILE, LOG_TGT_TYPE_STDERR, msg, osmo_wqueue::msg_queue, msgb_data(), msgb_dequeue(), msgb_free(), msgb_length(), OSMO_ASSERT, osmo_fd_unregister(), log_target::out, log_target::output, log_target::raw_output, log_target::tgt_file, log_target::type, and log_target::wqueue.
int log_target_file_switch_to_wqueue | ( | struct log_target * | target | ) |
switch from blocking + buffered file output to non-blocking write-queue based output.
[in] | target | log target which we should switch |
References _file_raw_output(), _file_wq_write_cb(), osmo_wqueue::bfd, osmo_fd::fd, log_target::fname, LOG_TGT_TYPE_FILE, LOG_WQUEUE_LEN, MAX_LOG_SIZE, osmo_fd_register(), OSMO_FD_WRITE, osmo_wqueue_init(), log_target::out, log_target::output, log_target::raw_output, log_target::tgt_file, log_target::type, osmo_fd::when, log_target::wqueue, and osmo_wqueue::write_cb.
struct log_target * log_target_find | ( | enum log_target_type | type, |
const char * | fname | ||
) |
Find a registered log target.
[in] | type | Log target type |
[in] | fname | File name |
References log_target::entry, log_target::fname, log_target::hostname, llist_for_each_entry, LOG_TGT_TYPE_FILE, LOG_TGT_TYPE_GSMTAP, osmo_log_target_list, log_target::tgt_file, log_target::tgt_gsmtap, type, and log_target::type.
void log_target_systemd_set_raw | ( | struct log_target * | target, |
bool | raw | ||
) |
Change meta information handling of an existing logging target.
[in] | target | logging target to be modified. |
[in] | raw | whether to offload rendering of the meta information (location, category) to systemd-journal. |
References _systemd_output(), _systemd_raw_output(), log_target::output, log_target::raw, log_target::raw_output, and log_target::sd_journal.
Referenced by log_target_create_systemd().
int log_targets_reopen | ( | void | ) |
close and re-open all log files (for log file rotation)
References log_target::entry, llist_for_each_entry, log_target_file_reopen(), log_tgt_mutex_lock, log_tgt_mutex_unlock, LOG_TGT_TYPE_FILE, osmo_log_target_list, and log_target::type.
Referenced by sighup_hdlr().
void log_tgt_mutex_lock_impl | ( | void | ) |
Acquire the osmo_log_tgt_mutex.
Don't use this function directly, always use macro log_tgt_mutex_lock() instead.
References osmo_log_tgt_mutex, and osmo_log_tgt_mutex_on.
void log_tgt_mutex_unlock_impl | ( | void | ) |
Release the osmo_log_tgt_mutex.
Don't use this function directly, always use macro log_tgt_mutex_unlock() instead.
References osmo_log_tgt_mutex, and osmo_log_tgt_mutex_on.
void logp | ( | int | subsys, |
const char * | file, | ||
int | line, | ||
int | cont, | ||
const char * | format, | ||
... | |||
) |
logging function used by DEBUGP() macro
[in] | subsys | Logging sub-system |
[in] | file | name of source code file |
[in] | cont | continuation (1) or new line (0) |
[in] | format | format string |
References file(), LOGL_DEBUG, osmo_vlogp(), and subsys.
void logp2 | ( | int | subsys, |
unsigned int | level, | ||
const char * | file, | ||
int | line, | ||
int | cont, | ||
const char * | format, | ||
... | |||
) |
|
static |
References level, LOGL_ERROR, LOGL_FATAL, LOGL_INFO, and LOGL_NOTICE.
Referenced by _systemd_output(), and _systemd_raw_output().
void logp_stub | ( | const char * | file, |
int | line, | ||
int | cont, | ||
const char * | format, | ||
... | |||
) |
References file().
|
inlinestatic |
References DLGLOBAL, log_info::num_cat, log_info::num_cat_user, OSMO_ASSERT, osmo_log_info, subsys, and subsys_lib2index().
Referenced by log_check_level(), log_set_category_filter(), and osmo_vlogp().
osmo_static_assert | ( | _LOG_CTX_COUNT<= | ARRAY_SIZE((struct log_context *) NULL) ->ctx, |
enum_logging_ctx_items_fit_in_struct_log_context | |||
) |
osmo_static_assert | ( | _LOG_FLT_COUNT<=8 * | sizeof((struct log_target *) NULL) ->filter_map, |
enum_logging_filters_fit_in_log_target_filter_map | |||
) |
osmo_static_assert | ( | _LOG_FLT_COUNT<= | ARRAY_SIZE((struct log_target *) NULL) ->filter_data, |
enum_logging_filters_fit_in_log_target_filter_data | |||
) |
void osmo_vlogp | ( | int | subsys, |
int | level, | ||
const char * | file, | ||
int | line, | ||
int | cont, | ||
const char * | format, | ||
va_list | ap | ||
) |
vararg version of logging function
[in] | subsys | Logging sub-system |
[in] | level | Log level |
[in] | file | name of source code file |
[in] | cont | continuation (1) or new line (0) |
[in] | format | format string |
[in] | ap | vararg-list containing format string arguments |
References _output(), log_target::entry, file(), level, llist_for_each_entry, log_cache_check(), log_tgt_mutex_lock, log_tgt_mutex_unlock, map_subsys(), osmo_log_target_list, log_target::raw_output, should_log_to_target(), and subsys.
|
inlinestatic |
References log_target::categories, log_category::enabled, log_info::filter_fn, log_target::filter_map, LOG_FLT_ALL, log_category::loglevel, log_target::loglevel, osmo_log_info, and subsys.
Referenced by log_check_level(), and osmo_vlogp().
|
static |
References log_info::num_cat_user, osmo_log_info, and subsys.
Referenced by map_subsys().
|
static |
Referenced by log_init().
|
static |
Referenced by level_color().
|
static |
|
static |
One global copy that contains the union of log levels for all targets for all categories, used for quick lock free checks of log targets.
Referenced by log_cache_check(), log_cache_enable(), log_cache_update(), and log_cache_update_all().
|
static |
Referenced by _gsmtap_raw_output().
|
static |
Referenced by _output_buf().
const struct value_string loglevel_strs[] |
Referenced by log_level_str(), and log_parse_level().
|
extern |
struct log_info* osmo_log_info |
|
static |
This mutex must be held while using osmo_log_target_list or any of its log_targets in a multithread program.
Prevents race conditions between threads like producing unordered timestamps or VTY deleting a target while another thread is writing to it
Referenced by log_enable_multithread(), log_tgt_mutex_lock_impl(), and log_tgt_mutex_unlock_impl().
|
static |
Referenced by log_enable_multithread(), log_tgt_mutex_lock_impl(), and log_tgt_mutex_unlock_impl().
void* tall_log_ctx = NULL |
Referenced by log_fini(), log_init(), and log_target_create().