Skip to content

Commit b777297

Browse files
committed
Log Buffersize in StreamCopy
1 parent 3c0faeb commit b777297

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/AudioTools/AudioCopy.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ class StreamCopyT {
5151

5252
void begin(){
5353
is_first = true;
54-
LOG("buffer_size=%d",buffer_size);
54+
LOGI("buffer_size=%d",buffer_size);
5555
}
5656

5757
void end() {
@@ -63,15 +63,15 @@ class StreamCopyT {
6363
this->from = new AudioStreamWrapper(from);
6464
this->to = &to;
6565
is_first = true;
66-
LOG("buffer_size=%d",buffer_size);
66+
LOGI("buffer_size=%d",buffer_size);
6767
}
6868

6969
// assign a new output and input stream
7070
void begin(Print &to, AudioStream &from){
7171
this->from = &from;
7272
this->to = &to;
7373
is_first = true;
74-
LOG("buffer_size=%d",buffer_size);
74+
LOGI("buffer_size=%d",buffer_size);
7575
}
7676

7777
Stream *getFrom(){

0 commit comments

Comments
 (0)