From d35b6a7b12a7cb4e165afa2580943f821022a792 Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Mon, 29 Dec 2008 04:06:41 +0000 Subject: [PATCH] debug: Create a region for Paging Command --- include/openbsc/debug.h | 1 + src/debug.c | 1 + 2 files changed, 2 insertions(+) diff --git a/include/openbsc/debug.h b/include/openbsc/debug.h index 06c9edd98..5fe22bc92 100644 --- a/include/openbsc/debug.h +++ b/include/openbsc/debug.h @@ -10,6 +10,7 @@ #define DRSL 0x0010 #define DNM 0x0020 #define DSMS 0x0100 +#define DPAG 0x0200 #define DMI 0x1000 #define DMIB 0x2000 diff --git a/src/debug.c b/src/debug.c index 7c55b6e21..cd6573968 100644 --- a/src/debug.c +++ b/src/debug.c @@ -50,6 +50,7 @@ static const struct debug_info debug_info[] = { DEBUG_CATEGORY(DRSL, "DRSSL","\033[1;35m", "") DEBUG_CATEGORY(DNM, "DNM", "\033[1;36m", "") DEBUG_CATEGORY(DSMS, "DSMS", "\033[1;37m", "") + DEBUG_CATEGORY(DPAG, "DPAG", "\033[1;38m", "") }; static int use_color = 1;