Skip to content

Commit

Permalink
Interrupted select()'s are detail-level events
Browse files Browse the repository at this point in the history
  • Loading branch information
Philip Prindeville committed Jan 18, 2024
1 parent 27045a9 commit b613891
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/src/clixon_event.c
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ clixon_event_loop(clixon_handle h)
* New select loop is called
* (3) Other signals result in an error and return -1.
*/
clixon_debug(CLIXON_DBG_DEFAULT, "select: %s", strerror(errno));
clixon_debug(CLIXON_DBG_DEFAULT | CLIXON_DBG_DETAIL, "select: %s", strerror(errno));
if (clixon_exit_get() == 1){
clixon_err(OE_EVENTS, errno, "select");
retval = 0;
Expand Down Expand Up @@ -468,7 +468,7 @@ clixon_event_loop(clixon_handle h)
}
if (clixon_exit_get() == 1)
retval = 0;
clixon_debug(CLIXON_DBG_DEFAULT, "done:%d", retval);
clixon_debug(CLIXON_DBG_DEFAULT, "retval:%d", retval);
return retval;
}

Expand Down

0 comments on commit b613891

Please sign in to comment.