ctrl: print textual error on IPA parsing failure

Change-Id: I49bb613b416d549f554fd9d23cd37b63954324db
This commit is contained in:
Max 2018-11-23 16:50:50 +01:00
parent 7ab5fc1f3b
commit a66de71f8e
1 changed files with 1 additions and 1 deletions

View File

@ -360,7 +360,7 @@ static int handle_control_read(struct osmo_fd * bfd)
* nothing left to do now. */
return 0;
} else if (ret < 0) {
LOGP(DLCTRL, LOGL_ERROR, "Failed to parse ip access message: %d\n", ret);
LOGP(DLCTRL, LOGL_ERROR, "Failed to parse ip access message: %d (%s)\n", ret, strerror(-ret));
return 0;
}