pespin has submitted this change. ( https://gerrit.osmocom.org/c/libosmo-netif/+/30718 )
Change subject: stream: Log read/write flags ......................................................................
stream: Log read/write flags
Change-Id: I57b064fa0498be76579ae9597ab9217d659aae41 --- M src/stream.c 1 file changed, 1 insertion(+), 1 deletion(-)
Approvals: Jenkins Builder: Verified osmith: Looks good to me, but someone else must approve laforge: Looks good to me, approved
diff --git a/src/stream.c b/src/stream.c index d3e9ad8..b784b21 100644 --- a/src/stream.c +++ b/src/stream.c @@ -1356,7 +1356,7 @@ struct osmo_stream_srv *conn = ofd->data; int rc = 0;
- LOGP(DLINP, LOGL_DEBUG, "connected read/write\n"); + LOGP(DLINP, LOGL_DEBUG, "connected read/write (what=0x%x)\n", what); if (what & OSMO_FD_READ) rc = osmo_stream_srv_read(conn); if (rc != -EBADF && (what & OSMO_FD_WRITE))