Skip to content

Commit

Permalink
[core] Changed the IPE error message.
Browse files Browse the repository at this point in the history
epoll_remove nonexisting socket is not an IPE,
as this function is used in API
  • Loading branch information
maxsharabayko committed Sep 22, 2020
1 parent 81199ac commit a263f89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion srtcore/api.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2272,7 +2272,7 @@ int CUDTUnited::epoll_remove_usock(const int eid, const SRTSOCKET u)
return epoll_remove_entity(eid, s->m_pUDT);
}

LOGC(ealog.Error, log << "IPE: remove_usock: @" << u
LOGC(ealog.Error, log << "remove_usock: @" << u
<< " not found as either socket or group. Removing only from epoll system.");
int no_events = 0;
return m_EPoll.update_usock(eid, u, &no_events);
Expand Down

0 comments on commit a263f89

Please sign in to comment.