log when invite response comes back

This commit is contained in:
Eric House 2019-01-08 20:34:22 -08:00
parent a665df7840
commit 250583caea

View file

@ -1171,12 +1171,13 @@ public class BTService extends XWService {
outStream.writeShort( nliData.length );
outStream.write( nliData, 0, nliData.length );
}
Log.i( TAG, "<eeh>sending invite" );
Log.i( TAG, "sending invite" );
outStream.flush();
DataInputStream inStream =
new DataInputStream( socket.getInputStream() );
reply = BTCmd.values()[inStream.readByte()];
Log.i( TAG, "got invite reply: %s", reply );
}
if ( null == reply ) {