osmo-bts/include/osmo-bts/logging.h

50 lines
1.1 KiB
C

#ifndef _LOGGING_H
#define _LOGGING_H
#define DEBUG
#include <osmocom/core/logging.h>
enum {
DRSL,
DOML,
DRLL,
DRR,
DMEAS,
DPAG,
DL1C,
DL1P,
DDSP,
DPCU,
DHO,
DTRX,
DLOOP,
DABIS,
DRTP,
DOSMUX,
DASCI,
};
extern const struct log_info bts_log_info;
/* LOGP with gsm_time prefix */
#define LOGPGT(ss, lvl, gt, fmt, args...) \
LOGP(ss, lvl, "%s " fmt, osmo_dump_gsmtime(gt), ## args)
#define DEBUGPGT(ss, gt, fmt, args...) \
LOGP(ss, LOGL_DEBUG, "%s " fmt, osmo_dump_gsmtime(gt), ## args)
/* LOGP with frame number prefix */
#define LOGPFN(ss, lvl, fn, fmt, args...) \
LOGP(ss, lvl, "%s " fmt, gsm_fn_as_gsmtime_str(fn), ## args)
#define DEBUGPFN(ss, fn, fmt, args...) \
LOGP(ss, LOGL_DEBUG, "%s " fmt, gsm_fn_as_gsmtime_str(fn), ## args)
/* LOGP with lchan + frame number prefix */
#define LOGPLCFN(lchan, fn, ss, lvl, fmt, args...) \
LOGP(ss, lvl, "%s %s " fmt, gsm_lchan_name(lchan), gsm_fn_as_gsmtime_str(fn), ## args)
/* LOGP with lchan + gsm_time prefix */
#define LOGPLCGT(lchan, gt, ss, lvl, fmt, args...) \
LOGP(ss, lvl, "%s %s " fmt, gsm_lchan_name(lchan), osmo_dump_gsmtime(gt), ## args)
#endif /* _LOGGING_H */