removed logging

This commit is contained in:
Lasan Mahaliyana
2026-06-19 19:07:34 +05:30
parent 2f9316b016
commit 9fd1060028
@@ -67,7 +67,6 @@ ExceptionOr<ByteArray> BleL2capInputStream::Read(std::int64_t size) {
if (size <= 0) {
return ExceptionOr<ByteArray>(ByteArray(std::string()));
}
LOG(INFO) << __func__ << ": trying to read " << size << " payload bytes";
while (pending_.empty()) {
ExceptionOr<ByteArray> packet = stream_.Read(kMaxFrameSize);