summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeels Hofmeyr <nhofmeyr@sysmocom.de>2016-12-18 23:45:36 +0100
committerNeels Hofmeyr <nhofmeyr@sysmocom.de>2016-12-21 14:38:18 +0100
commit7309e19358240100e56f2d6af8af61a5bb5630da (patch)
tree1711144374f06ffe1a0526ab9e70b9ce6400366e
parentb6d58e8cc0cbf4654efe986eb706f8d3a91a6c76 (diff)
fsm: log tweak: upon free, say 'Freeing instance'
Logging 'Release' is a bit ambiguous. At first I tought a subscriber connection was being released, IMHO 'Freeing instance' better describes that we are freeing an osmo_fsm_inst. Change-Id: I5cf99707d2ba5620b2988f777fa39cc806ec0212
-rw-r--r--src/fsm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fsm.c b/src/fsm.c
index 842c7665..319c8427 100644
--- a/src/fsm.c
+++ b/src/fsm.c
@@ -467,7 +467,7 @@ void _osmo_fsm_inst_term(struct osmo_fsm_inst *fi,
if (fi->fsm->cleanup)
fi->fsm->cleanup(fi, cause);
- LOGPFSMSRC(fi, file, line, "Release\n");
+ LOGPFSMSRC(fi, file, line, "Freeing instance\n");
osmo_fsm_inst_free(fi);
/* indicate our termination to the parent */