diff options
author | Alexander Couzens <lynxis@fe80.eu> | 2019-04-28 13:28:14 +0200 |
---|---|---|
committer | Denis Kenzior <denkenz@gmail.com> | 2019-04-28 10:13:51 -0500 |
commit | d604052cef7fe2f3b4b5f4f3debeb9f5e3b0d72c (patch) | |
tree | 0647fd2d2fe604dac2d2539af2ea581e7d5be8a0 | |
parent | 13181d1a01a18d2a9037042be3945d18083a25da (diff) | |
download | ofono-d604052cef7fe2f3b4b5f4f3debeb9f5e3b0d72c.tar.gz |
gprs: netreg_status_changed: output the status as human readable string
-rw-r--r-- | src/gprs.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1700,7 +1700,7 @@ static void netreg_status_changed(int status, int lac, int ci, int tech, { struct ofono_gprs *gprs = data; - DBG("%d", status); + DBG("%d (%s)", status, registration_status_to_string(status)); gprs->netreg_status = status; |