Skip to content

Commit 73c6d84

Browse files
committed
A2DPStream error msg
1 parent f02f54a commit 73c6d84

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/AudioLibs/A2DPStream.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ class A2DPStream : public AudioStream, public VolumeSupport {
230230
// blocking write: if buffer is full we wait
231231
size_t free = a2dp_buffer.availableForWrite();
232232
while(len > free){
233-
LOGD("Waiting for buffer to be available: %d < %d", (int) len, (int) free);
233+
LOGD("Waiting for buffer: writing %d > available %d", (int) len, (int) free);
234234
delay(5);
235235
free = a2dp_buffer.availableForWrite();
236236
}

0 commit comments

Comments
 (0)