aboutsummaryrefslogtreecommitdiffstats
path: root/include/osmo-bts/logging.h
blob: ce08e47cb2625b01beab06f97cf846a8115534d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#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 */