diff options
author | Sven Gothel <[email protected]> | 2020-07-29 07:25:52 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2020-07-29 07:25:52 +0200 |
commit | ae16045cfaaac963331bbc3aaf42b3117f890125 (patch) | |
tree | 2016ddadc35452dac3764a8beaacc905abcac830 /src | |
parent | 4b37e5bae7ddaf9299b1c8faf0c4e0d1de126f59 (diff) |
GATTHandler::l2capReaderThread: 'l2cap read error' merely a warning, if at all
Diffstat (limited to 'src')
-rw-r--r-- | src/direct_bt/GATTHandler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/direct_bt/GATTHandler.cpp b/src/direct_bt/GATTHandler.cpp index c73ada13..70efdba3 100644 --- a/src/direct_bt/GATTHandler.cpp +++ b/src/direct_bt/GATTHandler.cpp @@ -247,7 +247,7 @@ void GATTHandler::l2capReaderThreadImpl() { delete attPDU; // free unhandled PDU } } else if( ETIMEDOUT != errno && !l2capReaderShallStop ) { // expected exits - ERR_PRINT("GATTHandler::l2capReaderThread: l2cap read error -> Stop"); + WARN_PRINT("GATTHandler::l2capReaderThread: l2cap read error -> Stop"); l2capReaderShallStop = true; ioErrorCause = true; } |