From 311bfb59833ec5c8cf0bc9a55971f5ede95f4149 Mon Sep 17 00:00:00 2001 From: Neels Janosch Hofmeyr Date: Mon, 20 Feb 2023 16:59:11 +0100 Subject: [PATCH] log osmo_fsm timeouts set osmo_fsm_log_timeouts(true); Change-Id: Ic1ca03f06fbdef5a3fbe503e4414a780eb3e0fcc --- src/osmo-hnbgw/hnbgw.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/osmo-hnbgw/hnbgw.c b/src/osmo-hnbgw/hnbgw.c index ce82282..5b4e9b6 100644 --- a/src/osmo-hnbgw/hnbgw.c +++ b/src/osmo-hnbgw/hnbgw.c @@ -735,6 +735,8 @@ int main(int argc, char **argv) if (rc < 0) exit(1); + osmo_fsm_log_timeouts(true); + rc = osmo_ss7_init(); if (rc < 0) { LOGP(DMAIN, LOGL_FATAL, "osmo_ss7_init() failed with rc=%d\n", rc);