]> git.ipfire.org Git - thirdparty/shairport-sync.git/commitdiff
Quieten a debug message
authorMike Brady <mikebrady@eircom.net>
Wed, 15 Aug 2018 09:36:29 +0000 (10:36 +0100)
committerMike Brady <mikebrady@eircom.net>
Wed, 15 Aug 2018 09:36:29 +0000 (10:36 +0100)
player.c

index 3c4e693cfddba9737f30dd74e6709789896ae300..3b724ad8bbf4eb7abbd34082896cee1adf365159 100644 (file)
--- a/player.c
+++ b/player.c
@@ -2190,11 +2190,11 @@ void *player_thread_func(void *arg) {
                 s = s * config.tolerance * config.output_rate;
                 s = (s>>32)+config.tolerance * config.output_rate; //should be a number from 0 to config.tolerance * config.output_rate;
                 if ((sync_error>0) && (sync_error>s)) {
-                  debug(1,"Extra stuff -1");
+                  //debug(1,"Extra stuff -1");
                   amount_to_stuff = -1;
                 }
                 if ((sync_error<0) && (sync_error<(-s))) {
-                  debug(1,"Extra stuff +1");
+                  //debug(1,"Extra stuff +1");
                   amount_to_stuff = 1;
                 }              
               }