Skip to content

Commit 715921f

Browse files
committed
Decrease verbosity a tad
1 parent 1c74e74 commit 715921f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

audio.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -515,7 +515,7 @@ void * audio_thread(void * device_ptr) {
515515
// Finally, the audio itself
516516
int enc_len = zmq_recv(item->socket, encoded_data, MAX_DATA_PACKET_LEN, 0);
517517

518-
printf("Got a %d dec_len, %d num_channels, and %d enc_len from %s\n", dec_len, num_channels, enc_len, &client_ident[0]);
518+
//printf("Got a %d dec_len, %d num_channels, and %d enc_len from %s\n", dec_len, num_channels, enc_len, &client_ident[0]);
519519

520520
// Decode the data, expanding temp_buff if we need to:
521521
if( temp_buff_len < dec_len/sizeof(float) ) {
@@ -767,7 +767,7 @@ void AudioEngine::processBroker() {
767767
char client_tmp[IDENT_LEN];
768768
int client_len = zmq_recv(this->world_sock, &client_tmp[0], IDENT_LEN, 0);
769769

770-
printf("Received a world message from %s!\n", &client_tmp[0]);
770+
//printf("Received a world message from %s!\n", &client_tmp[0]);
771771

772772
// Get the decoded audio length, number of channels, and encoded audio:
773773
int audio_len, num_channels;

0 commit comments

Comments
 (0)