mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-12-27 09:58:45 +01:00
include strerror output in logging when socket read fails
This commit is contained in:
parent
7a4a9b0e71
commit
85811b7951
1 changed files with 1 additions and 1 deletions
|
@ -1691,7 +1691,7 @@ newConnectionInput( GIOChannel *source,
|
|||
board_draw( globals->cGlobals.game.board );
|
||||
}
|
||||
} else {
|
||||
XP_LOGF( "errno from read: %d", errno );
|
||||
XP_LOGF( "errno from read: %d/%s", errno, strerror(errno) );
|
||||
}
|
||||
keepSource = TRUE;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue